#Remove and add git repo instructions #https://stackoverflow.com/questions/39435240/rstudio-changing-origin-for-git-version-control-of-project
#Load some libraries
library(dplyr)
library(tidyr)
library(ggplot2)
library(viridis)
library(gplots) # maybe not needed
clustRnormal <- read.csv(file="data/clusterData.csv") # z scored values
clustR <- clustRnormal
#Making Long dataframe with geomFeatures and values
long_clustR <-
clustR %>% pivot_longer(
cols = contains("_cell") |
contains("_nucleus") |
contains("Intensity") |
contains("NucleusVolumeFraction")|
contains("Dim")|
contains("Diameter")|
contains("AngleBetween")|
contains("Orbit"),
names_to = "geomFeatures"
)
head(long_clustR)
#Make metadata chart
colnames(long_clustR)
[1] "runNumber" "timeTrack" "serialNumber" "CoverslipPresent" "CoverslipDistance" "OnCoverslip" "fieldNumber" "Treatment" "Row" "Column"
[11] "cellNumber" "Plate" "cluster" "geomFeatures" "value"
CellID_metaData <- long_clustR %>%
select(cellNumber,
# CoverslipPresent,
# CoverslipDistance,
# OnCoverslip,
fieldNumber,
Treatment,
Row,
Column,
Plate
)
head(CellID_metaData)
#make wide dataframe with columns that are cell ID and geom features
#keep only runNumber (timepoint, as an organising coolum)
#keep only first 45 timepoints
wide_cellID_geomFeature <- long_clustR %>%
select(runNumber,cellNumber,geomFeatures,value)%>%
filter(runNumber < 46) %>%
pivot_wider(names_from = c("cellNumber","geomFeatures"),
values_from = "value",
names_sep = "_FeatureID_")
wide_cellID_geomFeature
head(wide_cellID_geomFeature)
#Make some labels of cell and nuclear features
colnames(long_clustR)
[1] "runNumber" "timeTrack" "serialNumber" "CoverslipPresent" "CoverslipDistance" "OnCoverslip" "fieldNumber" "Treatment" "Row" "Column"
[11] "cellNumber" "Plate" "cluster" "geomFeatures" "value"
long_clustR$feature_type <- ifelse(grepl("_cell",long_clustR$geomFeatures), "cell_feature",
ifelse(grepl("_nucleus",long_clustR$geomFeatures), "nucleus_feature","whole_object"))
long_clustR$highLevelFeatures <- gsub("_cell","",long_clustR$geomFeatures)
long_clustR$highLevelFeatures <- gsub("_nucleus","",long_clustR$highLevelFeatures)
long_clustR$highLevelFeatures <- as.factor(long_clustR$highLevelFeatures)
#cellNumber (need also cell Number fused to each feature type)
#the line plotted is going to every point belonging to that cell,
#make two versions of each cellObject, one that is nuclear and one that is cellular
long_clustR$cellNumberCompartment <- paste(long_clustR$cellNumber,"_",long_clustR$feature_type)
# long_clustR$cellNumberCompartment
unique(long_clustR$geomFeatures)
[1] "Volume_cell" "SurfaceArea_cell" "MajorAxis_cell" "MinorAxis_cell" "secondMajor_cell" "Eccentricity_cell" "secondEccentricity_cell"
[8] "Sphericity_cell" "Vol2surf_cell" "xCoord_cell" "yCoord_cell" "zCoord_cell" "nProtrusions_cell" "Polarity_cell"
[15] "Spreading_cell" "Protrusivity_cell" "Volume_nucleus" "SurfaceArea_nucleus" "MajorAxis_nucleus" "MinorAxis_nucleus" "secondMajor_nucleus"
[22] "Eccentricity_nucleus" "secondEccentricity_nucleus" "Sphericity_nucleus" "Vol2surf_nucleus" "xCoord_nucleus" "yCoord_nucleus" "zCoord_nucleus"
[29] "nProtrusions_nucleus" "Polarity_nucleus" "Spreading_nucleus" "Protrusivity_nucleus" "MeanIntensity" "MinIntensity" "MaxIntensity"
[36] "NucleusVolumeFraction" "yDim" "xDim" "zDim" "EquivDiameter" "AngleBetween" "Orbit"
#make wide dataframe with columns that are cell ID and geom features
pairedOPM_CCF <- function(wideIDfeatures){
final_df_particular_CCF_Object <- data.frame()
library(stringr)
#one liner to get unique cellIDs Features from colnames of wide dataframe
listOfccfCellIDs <- unique(as.data.frame(str_split_fixed(colnames(wideIDfeatures[-1]), "_FeatureID_",2))[,1]) # about 250 cells
listOFccFFeatures <- unique(as.data.frame(str_split_fixed(colnames(wideIDfeatures[-1]), "_FeatureID_",2))[,2])
listOFccFFeatures
#select only features that are present for BOTH cell and nucleus
# nc_listOFccFFeatures <- listOFccFFea
nc_listOFccFFeatures <- as.data.frame(listOFccFFeatures) %>%
dplyr::filter(grepl("_cell|_nucleus",listOFccFFeatures))
nc_listOFccFFeatures
#remove nucleus and cell from feature names
sub_nc_listOFccFFeatures <- gsub("_nucleus|_cell","",nc_listOFccFFeatures$listOFccFFeatures)
#reassign list of features
vector_nc_listOFccFFeatures <- sub_nc_listOFccFFeatures
#make unique as features duplicated due to removal of Cell/nucleus suffix 29/11/21
vector_nc_listOFccFFeatures <- unique(vector_nc_listOFccFFeatures)
#Outer Loop: LOOP1: loop through feature in list
for(sub_chosenFeature in vector_nc_listOFccFFeatures){
an_chosenFeatureCell <- paste0(sub_chosenFeature,"_cell")
an_chosenFeatureNucleus <- paste0(sub_chosenFeature,"_nucleus")
#now paste rownames back onto feature of interest
#Inner Loop: LOOP2: Loop through all cells
for(cellID in listOfccfCellIDs){
print(paste("STARTing cell..",cellID, " With feature...",sub_chosenFeature))
lookupCell <- paste0(cellID,'_FeatureID_',an_chosenFeatureCell)
lookupNucleus <- paste0(cellID,'_FeatureID_',an_chosenFeatureNucleus)
#subset by column name
library(dplyr)
#NB Using "pull" here to make data into vector isntead of dataframe but this function might be slow
chosenTSone_y_cell <- pull(wideIDfeatures[,lookupCell])
# chosenTSone_y_cell
choseTStwo_x_nucleus <- pull(wideIDfeatures[,lookupNucleus])
#generate CCF
particularCellFeatureCCF <- ccf(chosenTSone_y_cell, choseTStwo_x_nucleus, plot = FALSE, na.action = na.pass)
str(particularCellFeatureCCF)
#make an object ID
# particular_CCF_ObjectID <- rep(paste)
anCCF_ACF <- particularCellFeatureCCF$acf
anCCF_LAG <- particularCellFeatureCCF$lag
an_CCF_ObjectID <- paste(rep(cellID, length(particularCellFeatureCCF$lag)))
an_CCF_Feature <- sub_chosenFeature
# particular_acfObjectTreatment <- rep(rep(paste(titlePlot), length(particular_acfObject$acf)))
particular_CCF_Object_output <- data.frame(anCCF_ACF , anCCF_LAG, an_CCF_ObjectID, an_CCF_Feature)
print(paste("adding Cell to dataframe...",cellID))
final_df_particular_CCF_Object <- rbind(final_df_particular_CCF_Object, particular_CCF_Object_output)
print(paste("ENDing cell..",cellID, " With feature...",sub_chosenFeature))
}
}
return(final_df_particular_CCF_Object)
}
#Run the function on “Wide_cellID_geomFeature”
outputCCFdata <- pairedOPM_CCF(wide_cellID_geomFeature)
[1] "STARTing cell.. 219 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.276 0.281 0.351 0.258 0.303 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 219"
[1] "ENDing cell.. 219 With feature... Volume"
[1] "STARTing cell.. 264 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.443 0.434 0.395 0.321 0.284 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 264"
[1] "ENDing cell.. 264 With feature... Volume"
[1] "STARTing cell.. 136 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.467 -0.412 -0.347 -0.256 -0.108 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 136"
[1] "ENDing cell.. 136 With feature... Volume"
[1] "STARTing cell.. 54 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.179 -0.185 -0.168 -0.169 -0.144 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 54"
[1] "ENDing cell.. 54 With feature... Volume"
[1] "STARTing cell.. 69 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.2152 -0.1261 -0.041 0.0954 0.1057 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 69"
[1] "ENDing cell.. 69 With feature... Volume"
[1] "STARTing cell.. 111 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.298 -0.182 -0.208 -0.127 -0.124 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 111"
[1] "ENDing cell.. 111 With feature... Volume"
[1] "STARTing cell.. 189 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.353 -0.366 -0.298 -0.297 -0.327 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 189"
[1] "ENDing cell.. 189 With feature... Volume"
[1] "STARTing cell.. 171 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.3 -0.352 -0.278 -0.371 -0.377 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 171"
[1] "ENDing cell.. 171 With feature... Volume"
[1] "STARTing cell.. 231 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0255 -0.0365 0.0691 0.0793 0.0571 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 231"
[1] "ENDing cell.. 231 With feature... Volume"
[1] "STARTing cell.. 205 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.107 -0.154 -0.167 -0.128 -0.145 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 205"
[1] "ENDing cell.. 205 With feature... Volume"
[1] "STARTing cell.. 244 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.3757 -0.2936 -0.3063 -0.1196 -0.0394 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 244"
[1] "ENDing cell.. 244 With feature... Volume"
[1] "STARTing cell.. 1 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.204 0.297 0.319 0.401 0.39 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 1"
[1] "ENDing cell.. 1 With feature... Volume"
[1] "STARTing cell.. 36 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.132 -0.0521 -0.1304 -0.0642 0.045 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 36"
[1] "ENDing cell.. 36 With feature... Volume"
[1] "STARTing cell.. 7 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.146 0.238 0.255 0.333 0.366 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 7"
[1] "ENDing cell.. 7 With feature... Volume"
[1] "STARTing cell.. 102 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.202 -0.1933 -0.1344 -0.184 -0.0876 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 102"
[1] "ENDing cell.. 102 With feature... Volume"
[1] "STARTing cell.. 22 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.334 0.386 0.378 0.455 0.506 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 22"
[1] "ENDing cell.. 22 With feature... Volume"
[1] "STARTing cell.. 188 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.111 0.138 0.153 0.207 0.216 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 188"
[1] "ENDing cell.. 188 With feature... Volume"
[1] "STARTing cell.. 55 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.0887 -0.0378 0.0147 0.0848 0.177 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 55"
[1] "ENDing cell.. 55 With feature... Volume"
[1] "STARTing cell.. 243 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.497 0.416 0.349 0.298 0.244 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 243"
[1] "ENDing cell.. 243 With feature... Volume"
[1] "STARTing cell.. 123 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.262 -0.219 -0.234 -0.3 -0.218 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 123"
[1] "ENDing cell.. 123 With feature... Volume"
[1] "STARTing cell.. 21 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.00756 -0.09316 -0.16664 -0.25085 -0.33153 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 21"
[1] "ENDing cell.. 21 With feature... Volume"
[1] "STARTing cell.. 163 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.3012 0.1065 -0.07 0.0209 0.0103 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 163"
[1] "ENDing cell.. 163 With feature... Volume"
[1] "STARTing cell.. 112 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.1704 0.1002 0.0403 0.0517 0.0734 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 112"
[1] "ENDing cell.. 112 With feature... Volume"
[1] "STARTing cell.. 33 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.0225 0.0388 -0.0582 0.0689 -0.0398 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 33"
[1] "ENDing cell.. 33 With feature... Volume"
[1] "STARTing cell.. 172 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.191 0.284 0.338 0.308 0.273 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 172"
[1] "ENDing cell.. 172 With feature... Volume"
[1] "STARTing cell.. 95 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.395 -0.357 -0.5 -0.352 -0.369 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 95"
[1] "ENDing cell.. 95 With feature... Volume"
[1] "STARTing cell.. 30 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.149 -0.181 -0.178 -0.211 -0.137 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 30"
[1] "ENDing cell.. 30 With feature... Volume"
[1] "STARTing cell.. 203 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.128 0.143 0.253 0.269 0.37 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 203"
[1] "ENDing cell.. 203 With feature... Volume"
[1] "STARTing cell.. 274 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.419 0.338 0.29 0.214 0.192 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 274"
[1] "ENDing cell.. 274 With feature... Volume"
[1] "STARTing cell.. 131 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.000625 -0.198255 -0.350542 0.077498 -0.227096 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 131"
[1] "ENDing cell.. 131 With feature... Volume"
[1] "STARTing cell.. 68 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.107 0.145 0.193 0.28 0.316 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 68"
[1] "ENDing cell.. 68 With feature... Volume"
[1] "STARTing cell.. 71 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.499 0.567 0.686 0.764 0.756 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 71"
[1] "ENDing cell.. 71 With feature... Volume"
[1] "STARTing cell.. 135 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0424 0.1096 0.1639 0.2154 0.2656 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 135"
[1] "ENDing cell.. 135 With feature... Volume"
[1] "STARTing cell.. 84 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0216 -0.1426 -0.1017 -0.173 -0.1441 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 84"
[1] "ENDing cell.. 84 With feature... Volume"
[1] "STARTing cell.. 206 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.101 -0.19 -0.141 -0.144 -0.134 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 206"
[1] "ENDing cell.. 206 With feature... Volume"
[1] "STARTing cell.. 255 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.28 -0.379 -0.327 -0.25 -0.187 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 255"
[1] "ENDing cell.. 255 With feature... Volume"
[1] "STARTing cell.. 64 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.29 -0.278 -0.284 -0.305 -0.31 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 64"
[1] "ENDing cell.. 64 With feature... Volume"
[1] "STARTing cell.. 9 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.0378 0.0949 -0.1046 0.0986 -0.042 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 9"
[1] "ENDing cell.. 9 With feature... Volume"
[1] "STARTing cell.. 122 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.326 0.358 0.392 0.417 0.465 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 122"
[1] "ENDing cell.. 122 With feature... Volume"
[1] "STARTing cell.. 23 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0211 0.1159 0.1676 0.2635 0.4122 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 23"
[1] "ENDing cell.. 23 With feature... Volume"
[1] "STARTing cell.. 162 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.0842 -0.0375 -0.0144 0.0387 0.1329 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 162"
[1] "ENDing cell.. 162 With feature... Volume"
[1] "STARTing cell.. 229 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.339 -0.379 -0.29 -0.309 -0.399 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 229"
[1] "ENDing cell.. 229 With feature... Volume"
[1] "STARTing cell.. 57 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.139 0.205 0.111 0.14 0.137 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 57"
[1] "ENDing cell.. 57 With feature... Volume"
[1] "STARTing cell.. 249 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.126 0.162 0.156 0.302 0.408 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 249"
[1] "ENDing cell.. 249 With feature... Volume"
[1] "STARTing cell.. 125 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.291 -0.2123 -0.1813 -0.1327 -0.0871 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 125"
[1] "ENDing cell.. 125 With feature... Volume"
[1] "STARTing cell.. 8 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.1788 0.1141 0.139 0.102 0.0955 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 8"
[1] "ENDing cell.. 8 With feature... Volume"
[1] "STARTing cell.. 165 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.139 -0.0858 -0.0624 -0.1659 -0.094 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 165"
[1] "ENDing cell.. 165 With feature... Volume"
[1] "STARTing cell.. 83 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.201 0.207 0.287 0.284 0.3 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 83"
[1] "ENDing cell.. 83 With feature... Volume"
[1] "STARTing cell.. 113 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.1186 0.0164 -0.1363 -0.1964 0.0139 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 113"
[1] "ENDing cell.. 113 With feature... Volume"
[1] "STARTing cell.. 220 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.1165 0.0474 0.0539 0.171 0.1454 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 220"
[1] "ENDing cell.. 220 With feature... Volume"
[1] "STARTing cell.. 174 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.281 0.307 0.295 0.215 0.215 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 174"
[1] "ENDing cell.. 174 With feature... Volume"
[1] "STARTing cell.. 56 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0805 0.0736 0.1146 0.1949 0.2493 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 56"
[1] "ENDing cell.. 56 With feature... Volume"
[1] "STARTing cell.. 173 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.2336 0.2567 0.2714 0.1683 0.0647 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 173"
[1] "ENDing cell.. 173 With feature... Volume"
[1] "STARTing cell.. 232 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.02502 0.00595 0.00766 -0.15362 -0.23303 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 232"
[1] "ENDing cell.. 232 With feature... Volume"
[1] "STARTing cell.. 37 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.383 0.481 0.525 0.549 0.547 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 37"
[1] "ENDing cell.. 37 With feature... Volume"
[1] "STARTing cell.. 86 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.24 -0.323 -0.347 -0.376 -0.384 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 86"
[1] "ENDing cell.. 86 With feature... Volume"
[1] "STARTing cell.. 103 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.136 -0.176 -0.201 -0.242 -0.262 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 103"
[1] "ENDing cell.. 103 With feature... Volume"
[1] "STARTing cell.. 208 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0529 -0.0251 -0.0366 -0.0814 -0.1525 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 208"
[1] "ENDing cell.. 208 With feature... Volume"
[1] "STARTing cell.. 190 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.465 -0.527 -0.568 -0.563 -0.629 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 190"
[1] "ENDing cell.. 190 With feature... Volume"
[1] "STARTing cell.. 4 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.1275 0.0726 -0.027 -0.0818 -0.1571 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 4"
[1] "ENDing cell.. 4 With feature... Volume"
[1] "STARTing cell.. 238 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.204 -0.233 -0.272 -0.29 -0.397 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 238"
[1] "ENDing cell.. 238 With feature... Volume"
[1] "STARTing cell.. 11 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.2 0.282 0.206 0.26 0.245 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 11"
[1] "ENDing cell.. 11 With feature... Volume"
[1] "STARTing cell.. 29 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.305 -0.297 -0.28 -0.312 -0.339 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 29"
[1] "ENDing cell.. 29 With feature... Volume"
[1] "STARTing cell.. 59 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.183 -0.257 -0.279 -0.271 -0.402 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 59"
[1] "ENDing cell.. 59 With feature... Volume"
[1] "STARTing cell.. 96 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.411 -0.43 -0.504 -0.261 -0.326 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 96"
[1] "ENDing cell.. 96 With feature... Volume"
[1] "STARTing cell.. 204 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0678 0.0874 0.1296 0.261 0.2315 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 204"
[1] "ENDing cell.. 204 With feature... Volume"
[1] "STARTing cell.. 275 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.341 0.382 0.394 0.398 0.377 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 275"
[1] "ENDing cell.. 275 With feature... Volume"
[1] "STARTing cell.. 130 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.194 -0.418 -0.275 -0.213 -0.173 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 130"
[1] "ENDing cell.. 130 With feature... Volume"
[1] "STARTing cell.. 137 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.1727 -0.1572 -0.1935 -0.0719 0.0329 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 137"
[1] "ENDing cell.. 137 With feature... Volume"
[1] "STARTing cell.. 140 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.346 -0.284 -0.302 -0.244 -0.177 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 140"
[1] "ENDing cell.. 140 With feature... Volume"
[1] "STARTing cell.. 226 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0446 0.0652 0.1125 0.1021 0.0553 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 226"
[1] "ENDing cell.. 226 With feature... Volume"
[1] "STARTing cell.. 74 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.195 -0.168 -0.251 -0.239 -0.172 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 74"
[1] "ENDing cell.. 74 With feature... Volume"
[1] "STARTing cell.. 256 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.0417 -0.0549 -0.0124 -0.029 0.0137 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 256"
[1] "ENDing cell.. 256 With feature... Volume"
[1] "STARTing cell.. 65 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0302 0.0174 0.0303 -0.0303 -0.2013 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 65"
[1] "ENDing cell.. 65 With feature... Volume"
[1] "STARTing cell.. 87 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.272 -0.365 -0.427 -0.419 -0.468 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 87"
[1] "ENDing cell.. 87 With feature... Volume"
[1] "STARTing cell.. 124 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.205 -0.257 -0.259 -0.266 -0.27 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 124"
[1] "ENDing cell.. 124 With feature... Volume"
[1] "STARTing cell.. 210 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.0497 -0.1876 -0.1079 -0.0978 -0.1213 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 210"
[1] "ENDing cell.. 210 With feature... Volume"
[1] "STARTing cell.. 164 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0265 0.0872 0.0952 0.2046 0.1724 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 164"
[1] "ENDing cell.. 164 With feature... Volume"
[1] "STARTing cell.. 230 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.29 -0.324 -0.385 -0.426 -0.525 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 230"
[1] "ENDing cell.. 230 With feature... Volume"
[1] "STARTing cell.. 13 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.191 0.275 0.26 0.325 0.29 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 13"
[1] "ENDing cell.. 13 With feature... Volume"
[1] "STARTing cell.. 250 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.0399 -0.0399 -0.0228 -0.0232 -0.0166 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 250"
[1] "ENDing cell.. 250 With feature... Volume"
[1] "STARTing cell.. 10 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0155 -0.0912 -0.0951 -0.0737 -0.0937 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 10"
[1] "ENDing cell.. 10 With feature... Volume"
[1] "STARTing cell.. 85 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0497 0.1206 0.1695 0.2101 0.3159 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 85"
[1] "ENDing cell.. 85 With feature... Volume"
[1] "STARTing cell.. 61 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.177 -0.16 -0.129 -0.102 -0.277 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 61"
[1] "ENDing cell.. 61 With feature... Volume"
[1] "STARTing cell.. 221 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.305 -0.327 -0.404 -0.394 -0.377 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 221"
[1] "ENDing cell.. 221 With feature... Volume"
[1] "STARTing cell.. 265 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.198 0.193 0.18 0.125 0.148 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 265"
[1] "ENDing cell.. 265 With feature... Volume"
[1] "STARTing cell.. 58 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.239 -0.435 -0.392 -0.199 -0.468 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 58"
[1] "ENDing cell.. 58 With feature... Volume"
[1] "STARTing cell.. 114 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0295 -0.1309 -0.258 -0.3773 -0.398 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 114"
[1] "ENDing cell.. 114 With feature... Volume"
[1] "STARTing cell.. 233 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.098631 -0.058113 0.000299 -0.027579 0.002745 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 233"
[1] "ENDing cell.. 233 With feature... Volume"
[1] "STARTing cell.. 246 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0565 0.0373 0.0616 0.1272 0.1449 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 246"
[1] "ENDing cell.. 246 With feature... Volume"
[1] "STARTing cell.. 104 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.1726 0.1208 0.0806 0.0328 0.0791 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 104"
[1] "ENDing cell.. 104 With feature... Volume"
[1] "STARTing cell.. 76 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0488 0.1816 0.1439 0.1295 0.2666 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 76"
[1] "ENDing cell.. 76 With feature... Volume"
[1] "STARTing cell.. 239 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.01483 0.02365 -0.00466 -0.04926 -0.17096 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 239"
[1] "ENDing cell.. 239 With feature... Volume"
[1] "STARTing cell.. 88 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.0592 -0.0787 -0.1469 -0.1314 -0.1224 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 88"
[1] "ENDing cell.. 88 With feature... Volume"
[1] "STARTing cell.. 211 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.169 -0.24 -0.227 -0.213 -0.217 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 211"
[1] "ENDing cell.. 211 With feature... Volume"
[1] "STARTing cell.. 24 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.03992 0.19203 0.02903 0.15229 -0.00486 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 24"
[1] "ENDing cell.. 24 With feature... Volume"
[1] "STARTing cell.. 276 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.265 0.1086 0.0846 -0.1341 -0.0468 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 276"
[1] "ENDing cell.. 276 With feature... Volume"
[1] "STARTing cell.. 115 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.03711 -0.17161 -0.14869 0.00316 -0.04323 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 115"
[1] "ENDing cell.. 115 With feature... Volume"
[1] "STARTing cell.. 132 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.2108 -0.2216 -0.2679 -0.1446 -0.0222 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 132"
[1] "ENDing cell.. 132 With feature... Volume"
[1] "STARTing cell.. 138 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.13 -0.119 -0.172 -0.15 -0.195 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 138"
[1] "ENDing cell.. 138 With feature... Volume"
[1] "STARTing cell.. 227 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.157 0.1126 0.1118 0.1488 0.0693 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 227"
[1] "ENDing cell.. 227 With feature... Volume"
[1] "STARTing cell.. 257 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.327 -0.334 -0.276 -0.204 -0.278 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 257"
[1] "ENDing cell.. 257 With feature... Volume"
[1] "STARTing cell.. 133 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.0953 0.0467 -0.3913 0.0974 -0.2398 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 133"
[1] "ENDing cell.. 133 With feature... Volume"
[1] "STARTing cell.. 126 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.143 0.165 0.127 0.115 0.125 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 126"
[1] "ENDing cell.. 126 With feature... Volume"
[1] "STARTing cell.. 78 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0648 0.1407 0.2183 0.283 0.3274 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 78"
[1] "ENDing cell.. 78 With feature... Volume"
[1] "STARTing cell.. 166 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.0396 0.0105 0.0553 0.0597 0.1828 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 166"
[1] "ENDing cell.. 166 With feature... Volume"
[1] "STARTing cell.. 195 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0756 0.2057 0.3971 0.3495 0.2313 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 195"
[1] "ENDing cell.. 195 With feature... Volume"
[1] "STARTing cell.. 251 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.223 -0.182 -0.174 -0.142 -0.161 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 251"
[1] "ENDing cell.. 251 With feature... Volume"
[1] "STARTing cell.. 12 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.323 -0.282 -0.264 -0.217 -0.237 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 12"
[1] "ENDing cell.. 12 With feature... Volume"
[1] "STARTing cell.. 222 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.1556 -0.1502 -0.1652 -0.0795 -0.089 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 222"
[1] "ENDing cell.. 222 With feature... Volume"
[1] "STARTing cell.. 60 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.087 -0.1624 -0.1091 -0.0772 -0.0998 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 60"
[1] "ENDing cell.. 60 With feature... Volume"
[1] "STARTing cell.. 63 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.0381 -0.1599 0.0259 -0.0347 -0.0748 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 63"
[1] "ENDing cell.. 63 With feature... Volume"
[1] "STARTing cell.. 175 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.5 0.486 0.52 0.495 0.455 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 175"
[1] "ENDing cell.. 175 With feature... Volume"
[1] "STARTing cell.. 234 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.472 0.533 0.425 0.355 0.31 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 234"
[1] "ENDing cell.. 234 With feature... Volume"
[1] "STARTing cell.. 192 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0856 0.1255 0.1218 0.1406 -0.0529 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 192"
[1] "ENDing cell.. 192 With feature... Volume"
[1] "STARTing cell.. 240 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.123 0.207 0.165 0.195 0.101 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 240"
[1] "ENDing cell.. 240 With feature... Volume"
[1] "STARTing cell.. 80 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.326 -0.324 -0.307 -0.312 -0.319 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 80"
[1] "ENDing cell.. 80 With feature... Volume"
[1] "STARTing cell.. 97 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.2236 -0.1289 -0.0179 0.1124 0.1687 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 97"
[1] "ENDing cell.. 97 With feature... Volume"
[1] "STARTing cell.. 207 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.248 0.297 0.238 0.263 0.302 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 207"
[1] "ENDing cell.. 207 With feature... Volume"
[1] "STARTing cell.. 277 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.16895 0.07516 0.00815 -0.10984 -0.15433 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 277"
[1] "ENDing cell.. 277 With feature... Volume"
[1] "STARTing cell.. 73 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.236 -0.346 -0.341 -0.409 -0.433 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 73"
[1] "ENDing cell.. 73 With feature... Volume"
[1] "STARTing cell.. 139 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.0827 -0.0526 0.0796 0.0746 0.1807 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 139"
[1] "ENDing cell.. 139 With feature... Volume"
[1] "STARTing cell.. 258 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.03086 -0.00296 0.01288 0.00979 0.09708 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 258"
[1] "ENDing cell.. 258 With feature... Volume"
[1] "STARTing cell.. 179 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0982 0.0763 0.0755 0.1001 0.0959 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 179"
[1] "ENDing cell.. 179 With feature... Volume"
[1] "STARTing cell.. 167 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0712 0.00995 -0.01776 -0.09352 -0.11014 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 167"
[1] "ENDing cell.. 167 With feature... Volume"
[1] "STARTing cell.. 252 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.209 -0.178 -0.164 -0.17 -0.158 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 252"
[1] "ENDing cell.. 252 With feature... Volume"
[1] "STARTing cell.. 81 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.206 -0.243 -0.336 -0.273 -0.326 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 81"
[1] "ENDing cell.. 81 With feature... Volume"
[1] "STARTing cell.. 14 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.1599 0.0749 -0.0274 -0.1246 -0.2167 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 14"
[1] "ENDing cell.. 14 With feature... Volume"
[1] "STARTing cell.. 199 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.00713 0.02308 0.13621 0.2178 0.16952 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 199"
[1] "ENDing cell.. 199 With feature... Volume"
[1] "STARTing cell.. 266 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.224 0.258 0.274 0.271 0.328 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 266"
[1] "ENDing cell.. 266 With feature... Volume"
[1] "STARTing cell.. 116 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.301 0.337 0.391 0.439 0.503 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 116"
[1] "ENDing cell.. 116 With feature... Volume"
[1] "STARTing cell.. 176 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.511 -0.43 -0.38 -0.512 -0.229 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 176"
[1] "ENDing cell.. 176 With feature... Volume"
[1] "STARTing cell.. 235 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.1176 -0.1036 -0.074 -0.0417 -0.0207 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 235"
[1] "ENDing cell.. 235 With feature... Volume"
[1] "STARTing cell.. 38 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0514 0.0891 0.1271 0.1565 0.1616 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 38"
[1] "ENDing cell.. 38 With feature... Volume"
[1] "STARTing cell.. 105 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.439 0.44 0.401 0.434 0.35 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 105"
[1] "ENDing cell.. 105 With feature... Volume"
[1] "STARTing cell.. 193 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0278 0.0159 -0.1137 -0.1021 -0.0417 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 193"
[1] "ENDing cell.. 193 With feature... Volume"
[1] "STARTing cell.. 181 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0847 0.0485 -0.0893 -0.081 -0.1234 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 181"
[1] "ENDing cell.. 181 With feature... Volume"
[1] "STARTing cell.. 28 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.536 -0.472 -0.475 -0.439 -0.32 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 28"
[1] "ENDing cell.. 28 With feature... Volume"
[1] "STARTing cell.. 98 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.0613 -0.0334 0.0551 0.1065 0.1436 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 98"
[1] "ENDing cell.. 98 With feature... Volume"
[1] "STARTing cell.. 200 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.1393 -0.0975 -0.0131 0.0399 0.1401 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 200"
[1] "ENDing cell.. 200 With feature... Volume"
[1] "STARTing cell.. 209 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.217 -0.363 -0.361 -0.428 -0.471 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 209"
[1] "ENDing cell.. 209 With feature... Volume"
[1] "STARTing cell.. 278 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.0362 -0.1162 -0.108 -0.1856 -0.2133 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 278"
[1] "ENDing cell.. 278 With feature... Volume"
[1] "STARTing cell.. 75 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.1446 -0.1559 -0.0298 -0.0838 -0.0623 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 75"
[1] "ENDing cell.. 75 With feature... Volume"
[1] "STARTing cell.. 141 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.105 0.133 0.275 0.275 0.384 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 141"
[1] "ENDing cell.. 141 With feature... Volume"
[1] "STARTing cell.. 259 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.0175 0.0697 0.0777 0.1528 0.1758 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 259"
[1] "ENDing cell.. 259 With feature... Volume"
[1] "STARTing cell.. 16 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.136 0.149 0.172 0.234 0.269 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 16"
[1] "ENDing cell.. 16 With feature... Volume"
[1] "STARTing cell.. 267 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0696 0.0196 -0.0609 -0.1446 -0.2421 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 267"
[1] "ENDing cell.. 267 With feature... Volume"
[1] "STARTing cell.. 201 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.125 0.249 0.31 0.36 0.364 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 201"
[1] "ENDing cell.. 201 With feature... Volume"
[1] "STARTing cell.. 117 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.313 0.341 0.359 0.349 0.413 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 117"
[1] "ENDing cell.. 117 With feature... Volume"
[1] "STARTing cell.. 177 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.426 -0.503 -0.468 -0.485 -0.576 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 177"
[1] "ENDing cell.. 177 With feature... Volume"
[1] "STARTing cell.. 15 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.00645 0.09642 -0.1163 -0.01433 -0.1315 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 15"
[1] "ENDing cell.. 15 With feature... Volume"
[1] "STARTing cell.. 106 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.258 -0.337 -0.393 -0.385 -0.389 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 106"
[1] "ENDing cell.. 106 With feature... Volume"
[1] "STARTing cell.. 194 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.1008 -0.1101 -0.0915 -0.1295 -0.3111 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 194"
[1] "ENDing cell.. 194 With feature... Volume"
[1] "STARTing cell.. 31 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0957 0.1671 0.1655 0.1021 0.1189 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 31"
[1] "ENDing cell.. 31 With feature... Volume"
[1] "STARTing cell.. 77 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.25 -0.396 -0.25 -0.394 -0.4 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 77"
[1] "ENDing cell.. 77 With feature... Volume"
[1] "STARTing cell.. 91 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.161 0.0122 -0.0499 -0.0445 -0.1387 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 91"
[1] "ENDing cell.. 91 With feature... Volume"
[1] "STARTing cell.. 142 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.0475 0.0999 0.0488 0.0352 -0.1831 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 142"
[1] "ENDing cell.. 142 With feature... Volume"
[1] "STARTing cell.. 17 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0739 0.1697 0.1911 0.2052 0.2505 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 17"
[1] "ENDing cell.. 17 With feature... Volume"
[1] "STARTing cell.. 62 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.0915 -0.2485 -0.2564 -0.1252 -0.2779 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 62"
[1] "ENDing cell.. 62 With feature... Volume"
[1] "STARTing cell.. 168 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.18 0.195 0.202 0.187 0.235 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 168"
[1] "ENDing cell.. 168 With feature... Volume"
[1] "STARTing cell.. 127 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.096 0.0927 -0.0777 -0.0749 0.0843 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 127"
[1] "ENDing cell.. 127 With feature... Volume"
[1] "STARTing cell.. 253 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.04879 -0.00084 -0.04006 -0.14435 -0.20477 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 253"
[1] "ENDing cell.. 253 With feature... Volume"
[1] "STARTing cell.. 118 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.326 -0.309 -0.3 -0.277 -0.261 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 118"
[1] "ENDing cell.. 118 With feature... Volume"
[1] "STARTing cell.. 39 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.117 0.103 0.136 0.181 0.177 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 39"
[1] "ENDing cell.. 39 With feature... Volume"
[1] "STARTing cell.. 107 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.208 0.256 0.313 0.39 0.46 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 107"
[1] "ENDing cell.. 107 With feature... Volume"
[1] "STARTing cell.. 196 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.196 -0.145 -0.21 -0.214 -0.234 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 196"
[1] "ENDing cell.. 196 With feature... Volume"
[1] "STARTing cell.. 212 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.169 0.214 0.355 0.315 0.513 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 212"
[1] "ENDing cell.. 212 With feature... Volume"
[1] "STARTing cell.. 79 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.318 -0.4 -0.455 -0.506 -0.545 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 79"
[1] "ENDing cell.. 79 With feature... Volume"
[1] "STARTing cell.. 143 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.141 -0.14 -0.142 -0.114 -0.114 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 143"
[1] "ENDing cell.. 143 With feature... Volume"
[1] "STARTing cell.. 92 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0954 0.0763 -0.097 0.0397 -0.1036 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 92"
[1] "ENDing cell.. 92 With feature... Volume"
[1] "STARTing cell.. 169 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.3695 0.3381 0.1775 0.2337 -0.0274 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 169"
[1] "ENDing cell.. 169 With feature... Volume"
[1] "STARTing cell.. 254 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0772 -0.0623 -0.163 -0.1336 -0.2232 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 254"
[1] "ENDing cell.. 254 With feature... Volume"
[1] "STARTing cell.. 269 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.1262 -0.0546 -0.0342 0.0207 0.0378 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 269"
[1] "ENDing cell.. 269 With feature... Volume"
[1] "STARTing cell.. 119 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.19 -0.25 -0.287 -0.327 -0.318 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 119"
[1] "ENDing cell.. 119 With feature... Volume"
[1] "STARTing cell.. 180 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.0198 0.0119 0.1297 0.194 0.2421 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 180"
[1] "ENDing cell.. 180 With feature... Volume"
[1] "STARTing cell.. 151 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.1092 -0.0623 0.1315 0.1252 0.0324 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 151"
[1] "ENDing cell.. 151 With feature... Volume"
[1] "STARTing cell.. 40 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.021 0.0118 0.0212 0.0943 0.1258 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 40"
[1] "ENDing cell.. 40 With feature... Volume"
[1] "STARTing cell.. 191 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.2194 -0.1735 0.0608 0.0725 0.1156 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 191"
[1] "ENDing cell.. 191 With feature... Volume"
[1] "STARTing cell.. 108 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.00128 0.03054 0.08559 0.12671 0.21688 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 108"
[1] "ENDing cell.. 108 With feature... Volume"
[1] "STARTing cell.. 198 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0688 0.1664 -0.1086 -0.0276 -0.0342 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 198"
[1] "ENDing cell.. 198 With feature... Volume"
[1] "STARTing cell.. 144 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.131 0.183 0.245 0.296 0.403 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 144"
[1] "ENDing cell.. 144 With feature... Volume"
[1] "STARTing cell.. 170 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.1015 0.1325 0.0799 0.1575 0.0796 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 170"
[1] "ENDing cell.. 170 With feature... Volume"
[1] "STARTing cell.. 270 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.00632 0.10345 0.0251 0.0854 0.32986 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 270"
[1] "ENDing cell.. 270 With feature... Volume"
[1] "STARTing cell.. 41 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.08646 0.00735 0.06387 0.04487 0.05883 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 41"
[1] "ENDing cell.. 41 With feature... Volume"
[1] "STARTing cell.. 154 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.332 -0.293 -0.336 -0.267 -0.164 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 154"
[1] "ENDing cell.. 154 With feature... Volume"
[1] "STARTing cell.. 90 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.0863 -0.1094 -0.195 -0.2311 -0.2557 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 90"
[1] "ENDing cell.. 90 With feature... Volume"
[1] "STARTing cell.. 145 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.121 0.166 0.225 0.276 0.346 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 145"
[1] "ENDing cell.. 145 With feature... Volume"
[1] "STARTing cell.. 271 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.075923 -0.000705 -0.026119 0.034783 -0.025249 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 271"
[1] "ENDing cell.. 271 With feature... Volume"
[1] "STARTing cell.. 183 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.212 -0.278 -0.362 -0.442 -0.464 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 183"
[1] "ENDing cell.. 183 With feature... Volume"
[1] "STARTing cell.. 147 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.565 0.506 0.548 0.451 0.475 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 147"
[1] "ENDing cell.. 147 With feature... Volume"
[1] "STARTing cell.. 178 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0404 -0.0174 -0.06 -0.0295 -0.0765 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 178"
[1] "ENDing cell.. 178 With feature... Volume"
[1] "STARTing cell.. 272 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.00885 0.10273 0.06794 0.15981 0.16203 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 272"
[1] "ENDing cell.. 272 With feature... Volume"
[1] "STARTing cell.. 43 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.00274 -0.06629 -0.12617 -0.11688 -0.11744 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 43"
[1] "ENDing cell.. 43 With feature... Volume"
[1] "STARTing cell.. 99 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0013 0.0275 0.16 0.2682 0.3708 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 99"
[1] "ENDing cell.. 99 With feature... Volume"
[1] "STARTing cell.. 155 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.1917 -0.0142 -0.0856 -0.1475 0.0204 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 155"
[1] "ENDing cell.. 155 With feature... Volume"
[1] "STARTing cell.. 148 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.0391 -0.0961 -0.0658 0.0115 0.0891 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 148"
[1] "ENDing cell.. 148 With feature... Volume"
[1] "STARTing cell.. 215 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0534 -0.05655 -0.05986 -0.01756 -0.00041 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 215"
[1] "ENDing cell.. 215 With feature... Volume"
[1] "STARTing cell.. 149 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.11 0.09 0.117 0.128 0.18 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 149"
[1] "ENDing cell.. 149 With feature... Volume"
[1] "STARTing cell.. 89 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.39 0.307 0.238 0.166 0.112 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 89"
[1] "ENDing cell.. 89 With feature... Volume"
[1] "STARTing cell.. 156 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.00473 0.02961 0.08335 -0.08456 -0.00698 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 156"
[1] "ENDing cell.. 156 With feature... Volume"
[1] "STARTing cell.. 150 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.0969 -0.0483 0.0366 0.1029 0.1572 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 150"
[1] "ENDing cell.. 150 With feature... Volume"
[1] "STARTing cell.. 42 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.1309 -0.0189 -0.0484 0.167 0.3016 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 42"
[1] "ENDing cell.. 42 With feature... Volume"
[1] "STARTing cell.. 44 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.0218 -0.0134 -0.1763 0.1557 0.1483 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 44"
[1] "ENDing cell.. 44 With feature... Volume"
[1] "STARTing cell.. 100 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.1186 0.0642 0.0506 0.0643 -0.0736 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 100"
[1] "ENDing cell.. 100 With feature... Volume"
[1] "STARTing cell.. 153 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.316 0.379 0.436 0.522 0.572 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 153"
[1] "ENDing cell.. 153 With feature... Volume"
[1] "STARTing cell.. 47 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.228 -0.082 -0.197 -0.162 -0.185 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 47"
[1] "ENDing cell.. 47 With feature... Volume"
[1] "STARTing cell.. 202 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.2365 -0.3005 -0.2858 -0.3102 -0.0374 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 202"
[1] "ENDing cell.. 202 With feature... Volume"
[1] "STARTing cell.. 51 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.04317 0.00264 -0.23742 -0.31665 -0.43052 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 51"
[1] "ENDing cell.. 51 With feature... Volume"
[1] "STARTing cell.. 260 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.225 -0.235 -0.144 -0.221 -0.121 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 260"
[1] "ENDing cell.. 260 With feature... Volume"
[1] "STARTing cell.. 217 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.00625 -0.03332 0.05807 0.04554 0.15031 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 217"
[1] "ENDing cell.. 217 With feature... Volume"
[1] "STARTing cell.. 182 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0415 -0.0222 0.0681 0.0934 0.1291 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 182"
[1] "ENDing cell.. 182 With feature... Volume"
[1] "STARTing cell.. 184 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.1015 0.1126 0.1166 0.2384 0.0665 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 184"
[1] "ENDing cell.. 184 With feature... Volume"
[1] "STARTing cell.. 45 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.1857 -0.0802 -0.1095 0.0106 0.0492 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 45"
[1] "ENDing cell.. 45 With feature... Volume"
[1] "STARTing cell.. 241 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0577 0.017 0.0687 0.1217 0.0703 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 241"
[1] "ENDing cell.. 241 With feature... Volume"
[1] "STARTing cell.. 82 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.366 -0.439 -0.33 -0.438 -0.353 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 82"
[1] "ENDing cell.. 82 With feature... Volume"
[1] "STARTing cell.. 261 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.07703 -0.01951 0.03525 -0.00394 0.10362 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 261"
[1] "ENDing cell.. 261 With feature... Volume"
[1] "STARTing cell.. 262 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.0802 -0.0993 -0.033 -0.0446 0.0326 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 262"
[1] "ENDing cell.. 262 With feature... Volume"
[1] "STARTing cell.. 216 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.095 -0.0977 -0.0435 0.0155 -0.0231 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 216"
[1] "ENDing cell.. 216 With feature... Volume"
[1] "STARTing cell.. 66 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.12 0.223 0.169 0.344 0.293 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 66"
[1] "ENDing cell.. 66 With feature... Volume"
[1] "STARTing cell.. 128 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0742 0.0202 0.1857 0.1734 0.1146 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 128"
[1] "ENDing cell.. 128 With feature... Volume"
[1] "STARTing cell.. 50 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.2201 -0.0655 -0.1953 -0.1237 -0.1142 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 50"
[1] "ENDing cell.. 50 With feature... Volume"
[1] "STARTing cell.. 5 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.1189 0.2331 0.223 0.1042 0.0586 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 5"
[1] "ENDing cell.. 5 With feature... Volume"
[1] "STARTing cell.. 26 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.18586 0.17062 -0.00929 -0.00485 -0.15267 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 26"
[1] "ENDing cell.. 26 With feature... Volume"
[1] "STARTing cell.. 129 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.0913 -0.1616 -0.1533 -0.1013 -0.1562 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 129"
[1] "ENDing cell.. 129 With feature... Volume"
[1] "STARTing cell.. 67 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0117 -0.1012 -0.1138 -0.0708 -0.0531 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 67"
[1] "ENDing cell.. 67 With feature... Volume"
[1] "STARTing cell.. 247 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.131 0.133 0.235 0.264 0.372 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 247"
[1] "ENDing cell.. 247 With feature... Volume"
[1] "STARTing cell.. 134 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.049 0.0281 0.0617 0.019 0.102 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 134"
[1] "ENDing cell.. 134 With feature... Volume"
[1] "STARTing cell.. 93 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.123 -0.13 -0.206 -0.238 -0.326 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 93"
[1] "ENDing cell.. 93 With feature... Volume"
[1] "STARTing cell.. 248 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0516 0.1187 0.0872 -0.023 0.1216 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 248"
[1] "ENDing cell.. 248 With feature... Volume"
[1] "STARTing cell.. 157 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.379 -0.281 -0.312 -0.204 -0.268 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 157"
[1] "ENDing cell.. 157 With feature... Volume"
[1] "STARTing cell.. 46 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.06771 -0.06742 -0.06122 0.00314 0.02325 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 46"
[1] "ENDing cell.. 46 With feature... Volume"
[1] "STARTing cell.. 242 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.0679 0.0351 0.0377 0.0817 0.0765 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 242"
[1] "ENDing cell.. 242 With feature... Volume"
[1] "STARTing cell.. 159 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.01853 0.09597 -0.00267 0.06359 0.1433 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 159"
[1] "ENDing cell.. 159 With feature... Volume"
[1] "STARTing cell.. 186 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.09232 0.10592 -0.1259 -0.29039 0.00554 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 186"
[1] "ENDing cell.. 186 With feature... Volume"
[1] "STARTing cell.. 228 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.1128 0.031 -0.1005 -0.0169 0.0258 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 228"
[1] "ENDing cell.. 228 With feature... Volume"
[1] "STARTing cell.. 160 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.3989 -0.2601 -0.2928 -0.2778 -0.0593 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 160"
[1] "ENDing cell.. 160 With feature... Volume"
[1] "STARTing cell.. 279 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.15373 0.12618 0.00423 -0.13744 -0.33523 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 279"
[1] "ENDing cell.. 279 With feature... Volume"
[1] "STARTing cell.. 53 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.11324 0.00383 -0.09285 0.05363 0.24101 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 53"
[1] "ENDing cell.. 53 With feature... Volume"
[1] "STARTing cell.. 94 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.112 0.157 0.205 0.345 0.362 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 94"
[1] "ENDing cell.. 94 With feature... Volume"
[1] "STARTing cell.. 121 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.284 0.231 0.336 0.305 0.315 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 121"
[1] "ENDing cell.. 121 With feature... Volume"
[1] "STARTing cell.. 213 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.248 -0.14 -0.155 -0.252 -0.211 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 213"
[1] "ENDing cell.. 213 With feature... Volume"
[1] "STARTing cell.. 109 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.0139 0.0313 0.163 0.1283 0.2261 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 109"
[1] "ENDing cell.. 109 With feature... Volume"
[1] "STARTing cell.. 110 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.1247 0.1279 0.1774 0.0619 0.2588 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 110"
[1] "ENDing cell.. 110 With feature... Volume"
[1] "STARTing cell.. 101 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.337 -0.219 -0.371 -0.249 -0.142 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 101"
[1] "ENDing cell.. 101 With feature... Volume"
[1] "STARTing cell.. 187 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.1656 0.1355 0.019 -0.0562 -0.1328 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 187"
[1] "ENDing cell.. 187 With feature... Volume"
[1] "STARTing cell.. 263 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.11456 0.06036 0.00883 -0.06775 -0.12819 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 263"
[1] "ENDing cell.. 263 With feature... Volume"
[1] "STARTing cell.. 218 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.0337 -0.1655 -0.0998 0.0418 0.1067 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 218"
[1] "ENDing cell.. 218 With feature... Volume"
[1] "STARTing cell.. 19 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0706 0.1399 0.2435 0.2291 0.2845 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 19"
[1] "ENDing cell.. 19 With feature... Volume"
[1] "STARTing cell.. 20 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] 0.0606 -0.1112 0.0316 0.1088 0.2667 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 20"
[1] "ENDing cell.. 20 With feature... Volume"
[1] "STARTing cell.. 224 With feature... Volume"
List of 6
$ acf : num [1:27, 1, 1] -0.20451 -0.2334 -0.15845 0.00799 -0.02223 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 224"
[1] "ENDing cell.. 224 With feature... Volume"
[1] "STARTing cell.. 219 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.419 0.421 0.46 0.387 0.347 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 219"
[1] "ENDing cell.. 219 With feature... SurfaceArea"
[1] "STARTing cell.. 264 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.176 0.296 0.245 0.216 0.195 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 264"
[1] "ENDing cell.. 264 With feature... SurfaceArea"
[1] "STARTing cell.. 136 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.41393 -0.35389 -0.23991 -0.1652 0.00479 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 136"
[1] "ENDing cell.. 136 With feature... SurfaceArea"
[1] "STARTing cell.. 54 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.06574 -0.0886 -0.06398 -0.05411 -0.00741 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 54"
[1] "ENDing cell.. 54 With feature... SurfaceArea"
[1] "STARTing cell.. 69 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0228 0.0836 0.0576 0.1158 0.0925 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 69"
[1] "ENDing cell.. 69 With feature... SurfaceArea"
[1] "STARTing cell.. 111 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0831 0.0773 -0.1383 -0.1385 -0.1376 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 111"
[1] "ENDing cell.. 111 With feature... SurfaceArea"
[1] "STARTing cell.. 189 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 3.18e-02 -8.32e-05 -2.91e-02 -7.55e-02 -1.53e-01 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 189"
[1] "ENDing cell.. 189 With feature... SurfaceArea"
[1] "STARTing cell.. 171 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 1.53e-05 1.14e-02 5.28e-02 1.27e-01 1.89e-01 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 171"
[1] "ENDing cell.. 171 With feature... SurfaceArea"
[1] "STARTing cell.. 231 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.203 0.158 0.221 0.177 0.179 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 231"
[1] "ENDing cell.. 231 With feature... SurfaceArea"
[1] "STARTing cell.. 205 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.186 -0.191 -0.24 -0.243 -0.216 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 205"
[1] "ENDing cell.. 205 With feature... SurfaceArea"
[1] "STARTing cell.. 244 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.4539 -0.3616 -0.2687 -0.0989 -0.0431 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 244"
[1] "ENDing cell.. 244 With feature... SurfaceArea"
[1] "STARTing cell.. 1 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.031 0.0363 0.0645 0.1014 0.1214 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 1"
[1] "ENDing cell.. 1 With feature... SurfaceArea"
[1] "STARTing cell.. 36 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0817 0.0713 0.0518 0.0809 0.062 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 36"
[1] "ENDing cell.. 36 With feature... SurfaceArea"
[1] "STARTing cell.. 7 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0648 0.1901 0.1759 0.2729 0.3129 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 7"
[1] "ENDing cell.. 7 With feature... SurfaceArea"
[1] "STARTing cell.. 102 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.249 0.257 0.213 0.161 0.098 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 102"
[1] "ENDing cell.. 102 With feature... SurfaceArea"
[1] "STARTing cell.. 22 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.431 0.472 0.45 0.522 0.566 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 22"
[1] "ENDing cell.. 22 With feature... SurfaceArea"
[1] "STARTing cell.. 188 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0722 0.1006 0.1297 0.1859 0.2068 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 188"
[1] "ENDing cell.. 188 With feature... SurfaceArea"
[1] "STARTing cell.. 55 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.136 -0.0826 -0.041 0.0123 0.0927 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 55"
[1] "ENDing cell.. 55 With feature... SurfaceArea"
[1] "STARTing cell.. 243 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.474 0.296 0.292 0.215 0.122 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 243"
[1] "ENDing cell.. 243 With feature... SurfaceArea"
[1] "STARTing cell.. 123 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.22 -0.344 -0.367 -0.424 -0.462 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 123"
[1] "ENDing cell.. 123 With feature... SurfaceArea"
[1] "STARTing cell.. 21 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.3221 0.2494 0.2157 0.1538 0.0881 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 21"
[1] "ENDing cell.. 21 With feature... SurfaceArea"
[1] "STARTing cell.. 163 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.2433 0.0499 -0.1549 -0.0385 -0.042 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 163"
[1] "ENDing cell.. 163 With feature... SurfaceArea"
[1] "STARTing cell.. 112 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0492 -0.0269 -0.0768 -0.0443 -0.1118 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 112"
[1] "ENDing cell.. 112 With feature... SurfaceArea"
[1] "STARTing cell.. 33 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.1436 -0.0354 -0.1149 -0.1099 -0.1121 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 33"
[1] "ENDing cell.. 33 With feature... SurfaceArea"
[1] "STARTing cell.. 172 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.249 0.307 0.27 0.21 0.179 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 172"
[1] "ENDing cell.. 172 With feature... SurfaceArea"
[1] "STARTing cell.. 95 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.10315 0.00453 -0.29731 -0.16063 -0.22566 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 95"
[1] "ENDing cell.. 95 With feature... SurfaceArea"
[1] "STARTing cell.. 30 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.163 -0.159 -0.205 -0.225 -0.164 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 30"
[1] "ENDing cell.. 30 With feature... SurfaceArea"
[1] "STARTing cell.. 203 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.154 0.206 0.29 0.31 0.425 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 203"
[1] "ENDing cell.. 203 With feature... SurfaceArea"
[1] "STARTing cell.. 274 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.2768 0.1935 0.1646 0.048 0.0719 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 274"
[1] "ENDing cell.. 274 With feature... SurfaceArea"
[1] "STARTing cell.. 131 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0918 -0.2988 -0.3883 -0.2556 -0.3629 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 131"
[1] "ENDing cell.. 131 With feature... SurfaceArea"
[1] "STARTing cell.. 68 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.166 0.143 0.2 0.277 0.312 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 68"
[1] "ENDing cell.. 68 With feature... SurfaceArea"
[1] "STARTing cell.. 71 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.501 0.567 0.672 0.759 0.711 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 71"
[1] "ENDing cell.. 71 With feature... SurfaceArea"
[1] "STARTing cell.. 135 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.228 0.272 0.322 0.366 0.419 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 135"
[1] "ENDing cell.. 135 With feature... SurfaceArea"
[1] "STARTing cell.. 84 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0497 -0.0944 0.0238 0.0338 0.1305 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 84"
[1] "ENDing cell.. 84 With feature... SurfaceArea"
[1] "STARTing cell.. 206 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.292 -0.339 -0.36 -0.405 -0.448 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 206"
[1] "ENDing cell.. 206 With feature... SurfaceArea"
[1] "STARTing cell.. 255 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.000995 -0.12188 -0.053832 -0.067295 0.06266 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 255"
[1] "ENDing cell.. 255 With feature... SurfaceArea"
[1] "STARTing cell.. 64 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.334 -0.267 -0.341 -0.337 -0.381 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 64"
[1] "ENDing cell.. 64 With feature... SurfaceArea"
[1] "STARTing cell.. 9 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.01235 0.12071 -0.05502 0.16339 -0.00442 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 9"
[1] "ENDing cell.. 9 With feature... SurfaceArea"
[1] "STARTing cell.. 122 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.233 0.216 0.27 0.285 0.29 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 122"
[1] "ENDing cell.. 122 With feature... SurfaceArea"
[1] "STARTing cell.. 23 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0616 0.0508 0.0759 0.206 0.2485 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 23"
[1] "ENDing cell.. 23 With feature... SurfaceArea"
[1] "STARTing cell.. 162 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.158 -0.119 -0.124 -0.199 -0.232 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 162"
[1] "ENDing cell.. 162 With feature... SurfaceArea"
[1] "STARTing cell.. 229 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0904 -0.163 -0.1633 -0.2522 -0.3348 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 229"
[1] "ENDing cell.. 229 With feature... SurfaceArea"
[1] "STARTing cell.. 57 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.143 0.264 0.119 0.115 0.106 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 57"
[1] "ENDing cell.. 57 With feature... SurfaceArea"
[1] "STARTing cell.. 249 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0418 0.0433 0.1501 0.3167 0.39 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 249"
[1] "ENDing cell.. 249 With feature... SurfaceArea"
[1] "STARTing cell.. 125 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.452 -0.439 -0.387 -0.361 -0.309 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 125"
[1] "ENDing cell.. 125 With feature... SurfaceArea"
[1] "STARTing cell.. 8 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.33 0.334 0.331 0.33 0.278 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 8"
[1] "ENDing cell.. 8 With feature... SurfaceArea"
[1] "STARTing cell.. 165 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.1469 -0.0904 -0.1979 -0.294 -0.2585 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 165"
[1] "ENDing cell.. 165 With feature... SurfaceArea"
[1] "STARTing cell.. 83 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.191 0.196 0.257 0.291 0.318 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 83"
[1] "ENDing cell.. 83 With feature... SurfaceArea"
[1] "STARTing cell.. 113 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.12289 -0.00514 -0.14571 -0.20432 0.01722 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 113"
[1] "ENDing cell.. 113 With feature... SurfaceArea"
[1] "STARTing cell.. 220 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.05938 -0.00905 0.07204 0.1143 0.04453 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 220"
[1] "ENDing cell.. 220 With feature... SurfaceArea"
[1] "STARTing cell.. 174 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.253 0.269 0.36 0.281 0.237 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 174"
[1] "ENDing cell.. 174 With feature... SurfaceArea"
[1] "STARTing cell.. 56 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.127 0.143 0.195 0.24 0.259 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 56"
[1] "ENDing cell.. 56 With feature... SurfaceArea"
[1] "STARTing cell.. 173 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.202 0.249 0.288 0.207 0.103 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 173"
[1] "ENDing cell.. 173 With feature... SurfaceArea"
[1] "STARTing cell.. 232 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.4 0.461 0.516 0.527 0.576 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 232"
[1] "ENDing cell.. 232 With feature... SurfaceArea"
[1] "STARTing cell.. 37 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.01123 0.13625 0.00628 0.14123 0.1345 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 37"
[1] "ENDing cell.. 37 With feature... SurfaceArea"
[1] "STARTing cell.. 86 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.209 -0.298 -0.318 -0.271 -0.23 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 86"
[1] "ENDing cell.. 86 With feature... SurfaceArea"
[1] "STARTing cell.. 103 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0655 -0.0969 -0.1571 -0.2087 -0.2765 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 103"
[1] "ENDing cell.. 103 With feature... SurfaceArea"
[1] "STARTing cell.. 208 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0486 -0.0899 -0.1659 -0.1438 -0.2279 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 208"
[1] "ENDing cell.. 208 With feature... SurfaceArea"
[1] "STARTing cell.. 190 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.454 -0.526 -0.578 -0.588 -0.627 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 190"
[1] "ENDing cell.. 190 With feature... SurfaceArea"
[1] "STARTing cell.. 4 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.315 0.267 0.223 0.203 0.138 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 4"
[1] "ENDing cell.. 4 With feature... SurfaceArea"
[1] "STARTing cell.. 238 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.168 -0.185 -0.228 -0.238 -0.349 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 238"
[1] "ENDing cell.. 238 With feature... SurfaceArea"
[1] "STARTing cell.. 11 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.143 0.1578 0.022 0.1764 0.0974 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 11"
[1] "ENDing cell.. 11 With feature... SurfaceArea"
[1] "STARTing cell.. 29 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.236 -0.305 -0.39 -0.453 -0.446 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 29"
[1] "ENDing cell.. 29 With feature... SurfaceArea"
[1] "STARTing cell.. 59 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.219 -0.289 -0.247 -0.208 -0.362 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 59"
[1] "ENDing cell.. 59 With feature... SurfaceArea"
[1] "STARTing cell.. 96 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.393 -0.338 -0.34 -0.139 -0.193 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 96"
[1] "ENDing cell.. 96 With feature... SurfaceArea"
[1] "STARTing cell.. 204 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0477 0.0398 0.171 0.3182 0.2195 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 204"
[1] "ENDing cell.. 204 With feature... SurfaceArea"
[1] "STARTing cell.. 275 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0362 -0.0049 -0.0631 -0.1165 -0.2012 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 275"
[1] "ENDing cell.. 275 With feature... SurfaceArea"
[1] "STARTing cell.. 130 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0258 -0.0826 -0.027 0.0567 0.154 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 130"
[1] "ENDing cell.. 130 With feature... SurfaceArea"
[1] "STARTing cell.. 137 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.134 -0.123 -0.316 -0.351 -0.317 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 137"
[1] "ENDing cell.. 137 With feature... SurfaceArea"
[1] "STARTing cell.. 140 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.117393 -0.061215 -0.060545 -0.019955 -0.000584 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 140"
[1] "ENDing cell.. 140 With feature... SurfaceArea"
[1] "STARTing cell.. 226 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.1797 0.1861 0.2107 0.1972 0.0651 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 226"
[1] "ENDing cell.. 226 With feature... SurfaceArea"
[1] "STARTing cell.. 74 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.393 -0.397 -0.38 -0.457 -0.436 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 74"
[1] "ENDing cell.. 74 With feature... SurfaceArea"
[1] "STARTing cell.. 256 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.13378 -0.10513 -0.05563 -0.08525 0.00354 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 256"
[1] "ENDing cell.. 256 With feature... SurfaceArea"
[1] "STARTing cell.. 65 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0466 0.0364 0.0687 -0.0226 -0.1561 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 65"
[1] "ENDing cell.. 65 With feature... SurfaceArea"
[1] "STARTing cell.. 87 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.387 -0.462 -0.519 -0.487 -0.542 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 87"
[1] "ENDing cell.. 87 With feature... SurfaceArea"
[1] "STARTing cell.. 124 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.215 0.0585 -0.0852 -0.193 -0.1557 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 124"
[1] "ENDing cell.. 124 With feature... SurfaceArea"
[1] "STARTing cell.. 210 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.123 -0.355 -0.397 -0.539 -0.539 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 210"
[1] "ENDing cell.. 210 With feature... SurfaceArea"
[1] "STARTing cell.. 164 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0341 0.1242 0.1249 0.2538 0.2336 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 164"
[1] "ENDing cell.. 164 With feature... SurfaceArea"
[1] "STARTing cell.. 230 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.307 -0.369 -0.435 -0.48 -0.519 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 230"
[1] "ENDing cell.. 230 With feature... SurfaceArea"
[1] "STARTing cell.. 13 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.17244 0.15134 0.09034 0.00795 -0.06073 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 13"
[1] "ENDing cell.. 13 With feature... SurfaceArea"
[1] "STARTing cell.. 250 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.01764 -0.02075 0.00548 0.00637 -0.0047 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 250"
[1] "ENDing cell.. 250 With feature... SurfaceArea"
[1] "STARTing cell.. 10 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.116 0.046 0.0555 0.0663 0.0948 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 10"
[1] "ENDing cell.. 10 With feature... SurfaceArea"
[1] "STARTing cell.. 85 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0652 0.1254 0.1806 0.2102 0.307 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 85"
[1] "ENDing cell.. 85 With feature... SurfaceArea"
[1] "STARTing cell.. 61 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.2403 -0.245 -0.0274 -0.0762 -0.1971 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 61"
[1] "ENDing cell.. 61 With feature... SurfaceArea"
[1] "STARTing cell.. 221 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.1699 -0.136 -0.141 -0.1112 -0.0555 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 221"
[1] "ENDing cell.. 221 With feature... SurfaceArea"
[1] "STARTing cell.. 265 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0545 -0.0552 -0.0657 -0.0515 -0.1505 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 265"
[1] "ENDing cell.. 265 With feature... SurfaceArea"
[1] "STARTing cell.. 58 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.49 0.319 0.324 0.475 0.247 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 58"
[1] "ENDing cell.. 58 With feature... SurfaceArea"
[1] "STARTing cell.. 114 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0953 -0.0875 -0.2286 -0.3221 -0.3826 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 114"
[1] "ENDing cell.. 114 With feature... SurfaceArea"
[1] "STARTing cell.. 233 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0615 -0.05107 -0.00218 -0.06097 0.00388 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 233"
[1] "ENDing cell.. 233 With feature... SurfaceArea"
[1] "STARTing cell.. 246 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.168 0.122 0.154 0.318 0.296 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 246"
[1] "ENDing cell.. 246 With feature... SurfaceArea"
[1] "STARTing cell.. 104 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0297 -0.1007 -0.2086 -0.2789 -0.3377 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 104"
[1] "ENDing cell.. 104 With feature... SurfaceArea"
[1] "STARTing cell.. 76 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.179433 0.000673 -0.098436 -0.225373 0.062178 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 76"
[1] "ENDing cell.. 76 With feature... SurfaceArea"
[1] "STARTing cell.. 239 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0824 0.1543 0.0548 -0.0685 -0.1616 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 239"
[1] "ENDing cell.. 239 With feature... SurfaceArea"
[1] "STARTing cell.. 88 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0146 -0.0228 -0.0689 -0.0555 -0.0607 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 88"
[1] "ENDing cell.. 88 With feature... SurfaceArea"
[1] "STARTing cell.. 211 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0745 -0.1641 -0.145 -0.1352 -0.1632 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 211"
[1] "ENDing cell.. 211 With feature... SurfaceArea"
[1] "STARTing cell.. 24 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0507 0.1838 0.0878 0.1518 0.0885 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 24"
[1] "ENDing cell.. 24 With feature... SurfaceArea"
[1] "STARTing cell.. 276 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.30163 0.19369 0.23631 0.00908 0.08257 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 276"
[1] "ENDing cell.. 276 With feature... SurfaceArea"
[1] "STARTing cell.. 115 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.1123 0.1058 -0.2456 -0.0808 -0.0952 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 115"
[1] "ENDing cell.. 115 With feature... SurfaceArea"
[1] "STARTing cell.. 132 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.2657 -0.1668 -0.2021 -0.1022 -0.0167 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 132"
[1] "ENDing cell.. 132 With feature... SurfaceArea"
[1] "STARTing cell.. 138 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.437 -0.463 -0.607 -0.585 -0.545 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 138"
[1] "ENDing cell.. 138 With feature... SurfaceArea"
[1] "STARTing cell.. 227 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.214 0.139 0.141 0.227 0.099 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 227"
[1] "ENDing cell.. 227 With feature... SurfaceArea"
[1] "STARTing cell.. 257 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0261 -0.0536 -0.043 0.0368 -0.2261 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 257"
[1] "ENDing cell.. 257 With feature... SurfaceArea"
[1] "STARTing cell.. 133 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0934 0.1675 -0.3159 0.0706 -0.181 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 133"
[1] "ENDing cell.. 133 With feature... SurfaceArea"
[1] "STARTing cell.. 126 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.422 0.326 0.434 0.452 0.388 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 126"
[1] "ENDing cell.. 126 With feature... SurfaceArea"
[1] "STARTing cell.. 78 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0249 0.0303 0.1024 0.1679 0.2318 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 78"
[1] "ENDing cell.. 78 With feature... SurfaceArea"
[1] "STARTing cell.. 166 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.1392 0.00431 0.11667 0.00366 0.1423 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 166"
[1] "ENDing cell.. 166 With feature... SurfaceArea"
[1] "STARTing cell.. 195 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.064 0.15 0.231 0.265 0.114 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 195"
[1] "ENDing cell.. 195 With feature... SurfaceArea"
[1] "STARTing cell.. 251 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.2305 -0.0656 0.0255 0.0831 -0.0282 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 251"
[1] "ENDing cell.. 251 With feature... SurfaceArea"
[1] "STARTing cell.. 12 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0797 -0.1263 -0.1694 -0.2864 -0.3126 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 12"
[1] "ENDing cell.. 12 With feature... SurfaceArea"
[1] "STARTing cell.. 222 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0986 -0.11195 -0.05329 0.00969 -0.16538 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 222"
[1] "ENDing cell.. 222 With feature... SurfaceArea"
[1] "STARTing cell.. 60 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.097 -0.1112 -0.0486 -0.0514 0.0214 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 60"
[1] "ENDing cell.. 60 With feature... SurfaceArea"
[1] "STARTing cell.. 63 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.021 -0.0858 -0.0534 -0.1297 -0.0627 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 63"
[1] "ENDing cell.. 63 With feature... SurfaceArea"
[1] "STARTing cell.. 175 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.217 0.273 0.361 0.412 0.491 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 175"
[1] "ENDing cell.. 175 With feature... SurfaceArea"
[1] "STARTing cell.. 234 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.574 0.613 0.566 0.455 0.495 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 234"
[1] "ENDing cell.. 234 With feature... SurfaceArea"
[1] "STARTing cell.. 192 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.135 -0.172 -0.168 -0.18 -0.391 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 192"
[1] "ENDing cell.. 192 With feature... SurfaceArea"
[1] "STARTing cell.. 240 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.11 0.18 0.173 0.223 0.172 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 240"
[1] "ENDing cell.. 240 With feature... SurfaceArea"
[1] "STARTing cell.. 80 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.188 -0.222 -0.231 -0.227 -0.278 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 80"
[1] "ENDing cell.. 80 With feature... SurfaceArea"
[1] "STARTing cell.. 97 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0996 0.1527 0.1281 0.3127 0.3461 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 97"
[1] "ENDing cell.. 97 With feature... SurfaceArea"
[1] "STARTing cell.. 207 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.372 0.38 0.345 0.345 0.329 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 207"
[1] "ENDing cell.. 207 With feature... SurfaceArea"
[1] "STARTing cell.. 277 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.1566 0.0419 0.014 -0.1081 -0.0601 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 277"
[1] "ENDing cell.. 277 With feature... SurfaceArea"
[1] "STARTing cell.. 73 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.139 -0.244 -0.266 -0.326 -0.368 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 73"
[1] "ENDing cell.. 73 With feature... SurfaceArea"
[1] "STARTing cell.. 139 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.1919 -0.2025 -0.1275 -0.129 -0.0649 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 139"
[1] "ENDing cell.. 139 With feature... SurfaceArea"
[1] "STARTing cell.. 258 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.159 -0.18 -0.202 -0.261 -0.28 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 258"
[1] "ENDing cell.. 258 With feature... SurfaceArea"
[1] "STARTing cell.. 179 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.18596 0.09167 0.04922 0.04508 0.00657 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 179"
[1] "ENDing cell.. 179 With feature... SurfaceArea"
[1] "STARTing cell.. 167 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0815 0.0087 0.0479 0.036 0.0159 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 167"
[1] "ENDing cell.. 167 With feature... SurfaceArea"
[1] "STARTing cell.. 252 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.222 -0.22 -0.189 -0.319 -0.284 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 252"
[1] "ENDing cell.. 252 With feature... SurfaceArea"
[1] "STARTing cell.. 81 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0544 -0.2919 -0.2317 -0.2562 -0.2893 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 81"
[1] "ENDing cell.. 81 With feature... SurfaceArea"
[1] "STARTing cell.. 14 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.39 0.36 0.343 0.295 0.248 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 14"
[1] "ENDing cell.. 14 With feature... SurfaceArea"
[1] "STARTing cell.. 199 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0182 0.0411 0.0881 0.0697 0.1763 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 199"
[1] "ENDing cell.. 199 With feature... SurfaceArea"
[1] "STARTing cell.. 266 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.225 0.203 0.183 0.18 0.194 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 266"
[1] "ENDing cell.. 266 With feature... SurfaceArea"
[1] "STARTing cell.. 116 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.281 0.311 0.322 0.386 0.434 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 116"
[1] "ENDing cell.. 116 With feature... SurfaceArea"
[1] "STARTing cell.. 176 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.45 -0.395 -0.375 -0.496 -0.335 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 176"
[1] "ENDing cell.. 176 With feature... SurfaceArea"
[1] "STARTing cell.. 235 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.094 -0.0855 -0.0638 -0.0437 0.0188 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 235"
[1] "ENDing cell.. 235 With feature... SurfaceArea"
[1] "STARTing cell.. 38 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0538 0.0751 0.0847 0.0995 0.0732 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 38"
[1] "ENDing cell.. 38 With feature... SurfaceArea"
[1] "STARTing cell.. 105 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.371 0.361 0.339 0.371 0.288 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 105"
[1] "ENDing cell.. 105 With feature... SurfaceArea"
[1] "STARTing cell.. 193 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.148 -0.11 -0.23 -0.232 -0.207 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 193"
[1] "ENDing cell.. 193 With feature... SurfaceArea"
[1] "STARTing cell.. 181 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.13039 0.13688 0.00214 -0.02739 -0.02887 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 181"
[1] "ENDing cell.. 181 With feature... SurfaceArea"
[1] "STARTing cell.. 28 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.467 -0.398 -0.439 -0.387 -0.314 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 28"
[1] "ENDing cell.. 28 With feature... SurfaceArea"
[1] "STARTing cell.. 98 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0936 -0.0544 0.0151 0.0587 0.112 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 98"
[1] "ENDing cell.. 98 With feature... SurfaceArea"
[1] "STARTing cell.. 200 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.1425 -0.0967 -0.0162 0.0287 0.1363 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 200"
[1] "ENDing cell.. 200 With feature... SurfaceArea"
[1] "STARTing cell.. 209 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.132 -0.282 -0.289 -0.392 -0.458 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 209"
[1] "ENDing cell.. 209 With feature... SurfaceArea"
[1] "STARTing cell.. 278 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.165 0.135 0.123 0.13 0.101 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 278"
[1] "ENDing cell.. 278 With feature... SurfaceArea"
[1] "STARTing cell.. 75 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0281 -0.1039 -0.0269 -0.2566 -0.2631 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 75"
[1] "ENDing cell.. 75 With feature... SurfaceArea"
[1] "STARTing cell.. 141 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.1286 -0.0869 0.0214 0.1157 0.1749 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 141"
[1] "ENDing cell.. 141 With feature... SurfaceArea"
[1] "STARTing cell.. 259 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0356 0.0562 0.0718 0.1459 0.1767 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 259"
[1] "ENDing cell.. 259 With feature... SurfaceArea"
[1] "STARTing cell.. 16 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.267 -0.248 -0.272 -0.42 -0.467 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 16"
[1] "ENDing cell.. 16 With feature... SurfaceArea"
[1] "STARTing cell.. 267 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.1031 0.0822 0.014 -0.0644 -0.1552 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 267"
[1] "ENDing cell.. 267 With feature... SurfaceArea"
[1] "STARTing cell.. 201 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.156 0.258 0.31 0.407 0.387 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 201"
[1] "ENDing cell.. 201 With feature... SurfaceArea"
[1] "STARTing cell.. 117 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.165 0.185 0.227 0.269 0.374 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 117"
[1] "ENDing cell.. 117 With feature... SurfaceArea"
[1] "STARTing cell.. 177 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.3377 -0.2187 -0.1699 -0.1259 -0.0974 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 177"
[1] "ENDing cell.. 177 With feature... SurfaceArea"
[1] "STARTing cell.. 15 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.155 0.214 0.145 0.201 0.144 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 15"
[1] "ENDing cell.. 15 With feature... SurfaceArea"
[1] "STARTing cell.. 106 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.266 -0.328 -0.366 -0.378 -0.38 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 106"
[1] "ENDing cell.. 106 With feature... SurfaceArea"
[1] "STARTing cell.. 194 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.121 -0.124 -0.119 -0.193 -0.292 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 194"
[1] "ENDing cell.. 194 With feature... SurfaceArea"
[1] "STARTing cell.. 31 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.255 0.321 0.327 0.208 0.185 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 31"
[1] "ENDing cell.. 31 With feature... SurfaceArea"
[1] "STARTing cell.. 77 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.34 -0.48 -0.245 -0.425 -0.427 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 77"
[1] "ENDing cell.. 77 With feature... SurfaceArea"
[1] "STARTing cell.. 91 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.104 0.098 0.072 0.025 0.0354 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 91"
[1] "ENDing cell.. 91 With feature... SurfaceArea"
[1] "STARTing cell.. 142 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.1433 0.1124 0.0214 -0.0376 -0.0881 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 142"
[1] "ENDing cell.. 142 With feature... SurfaceArea"
[1] "STARTing cell.. 17 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.128 0.138 0.202 0.22 0.195 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 17"
[1] "ENDing cell.. 17 With feature... SurfaceArea"
[1] "STARTing cell.. 62 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0623 0.1568 0.1778 0.03 0.1 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 62"
[1] "ENDing cell.. 62 With feature... SurfaceArea"
[1] "STARTing cell.. 168 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.366 -0.343 -0.349 -0.38 -0.333 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 168"
[1] "ENDing cell.. 168 With feature... SurfaceArea"
[1] "STARTing cell.. 127 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0762 -0.1168 -0.2611 -0.1797 -0.2636 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 127"
[1] "ENDing cell.. 127 With feature... SurfaceArea"
[1] "STARTing cell.. 253 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.000719 -0.040311 -0.079266 -0.180619 -0.22669 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 253"
[1] "ENDing cell.. 253 With feature... SurfaceArea"
[1] "STARTing cell.. 118 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.316 -0.282 -0.287 -0.254 -0.252 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 118"
[1] "ENDing cell.. 118 With feature... SurfaceArea"
[1] "STARTing cell.. 39 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0986 0.0616 0.1004 0.1657 0.201 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 39"
[1] "ENDing cell.. 39 With feature... SurfaceArea"
[1] "STARTing cell.. 107 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.222 0.275 0.327 0.404 0.477 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 107"
[1] "ENDing cell.. 107 With feature... SurfaceArea"
[1] "STARTing cell.. 196 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.315 -0.259 -0.168 -0.136 -0.218 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 196"
[1] "ENDing cell.. 196 With feature... SurfaceArea"
[1] "STARTing cell.. 212 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0974 -0.191 -0.1896 -0.3474 -0.2711 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 212"
[1] "ENDing cell.. 212 With feature... SurfaceArea"
[1] "STARTing cell.. 79 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.169 -0.255 -0.357 -0.396 -0.427 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 79"
[1] "ENDing cell.. 79 With feature... SurfaceArea"
[1] "STARTing cell.. 143 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.169 0.1805 0.1386 0.1644 0.0578 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 143"
[1] "ENDing cell.. 143 With feature... SurfaceArea"
[1] "STARTing cell.. 92 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.1697 0.1313 -0.0767 0.1512 -0.0555 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 92"
[1] "ENDing cell.. 92 With feature... SurfaceArea"
[1] "STARTing cell.. 169 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.427 0.396 0.241 0.267 0.104 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 169"
[1] "ENDing cell.. 169 With feature... SurfaceArea"
[1] "STARTing cell.. 254 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0602 -0.0986 -0.16 -0.1225 -0.2384 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 254"
[1] "ENDing cell.. 254 With feature... SurfaceArea"
[1] "STARTing cell.. 269 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.1468 -0.0932 -0.1002 -0.0642 -0.0509 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 269"
[1] "ENDing cell.. 269 With feature... SurfaceArea"
[1] "STARTing cell.. 119 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.08946 0.01024 0.00858 -0.07465 -0.0923 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 119"
[1] "ENDing cell.. 119 With feature... SurfaceArea"
[1] "STARTing cell.. 180 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0284 0.0409 0.1894 0.2198 0.2804 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 180"
[1] "ENDing cell.. 180 With feature... SurfaceArea"
[1] "STARTing cell.. 151 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0746 -0.1031 0.1582 0.1989 0.0318 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 151"
[1] "ENDing cell.. 151 With feature... SurfaceArea"
[1] "STARTing cell.. 40 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.2431 0.2146 0.0689 0.0879 0.1513 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 40"
[1] "ENDing cell.. 40 With feature... SurfaceArea"
[1] "STARTing cell.. 191 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0334 -0.00936 0.19882 0.18109 0.31854 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 191"
[1] "ENDing cell.. 191 With feature... SurfaceArea"
[1] "STARTing cell.. 108 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0186 0.0919 0.1594 0.1782 0.2087 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 108"
[1] "ENDing cell.. 108 With feature... SurfaceArea"
[1] "STARTing cell.. 198 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.00387 0.15768 -0.10748 0.01576 -0.07438 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 198"
[1] "ENDing cell.. 198 With feature... SurfaceArea"
[1] "STARTing cell.. 144 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.189 0.238 0.304 0.339 0.452 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 144"
[1] "ENDing cell.. 144 With feature... SurfaceArea"
[1] "STARTing cell.. 170 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.1372 0.1736 0.0996 0.1441 0.0876 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 170"
[1] "ENDing cell.. 170 With feature... SurfaceArea"
[1] "STARTing cell.. 270 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0265 0.0613 0.0988 0.1923 0.4493 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 270"
[1] "ENDing cell.. 270 With feature... SurfaceArea"
[1] "STARTing cell.. 41 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.00605 -0.05411 0.03399 0.01422 0.08569 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 41"
[1] "ENDing cell.. 41 With feature... SurfaceArea"
[1] "STARTing cell.. 154 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.2912 -0.1745 -0.2253 -0.1037 0.0064 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 154"
[1] "ENDing cell.. 154 With feature... SurfaceArea"
[1] "STARTing cell.. 90 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.145 0.218 0.24 0.269 0.132 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 90"
[1] "ENDing cell.. 90 With feature... SurfaceArea"
[1] "STARTing cell.. 145 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0874 0.1347 0.1903 0.2433 0.3237 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 145"
[1] "ENDing cell.. 145 With feature... SurfaceArea"
[1] "STARTing cell.. 271 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.1637 -0.1372 -0.1538 -0.0798 -0.1174 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 271"
[1] "ENDing cell.. 271 With feature... SurfaceArea"
[1] "STARTing cell.. 183 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0297 -0.067 -0.1437 -0.1685 -0.2018 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 183"
[1] "ENDing cell.. 183 With feature... SurfaceArea"
[1] "STARTing cell.. 147 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.379 0.2712 0.2272 0.0275 0.0296 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 147"
[1] "ENDing cell.. 147 With feature... SurfaceArea"
[1] "STARTing cell.. 178 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0141 -0.043 -0.013 -0.0034 -0.0312 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 178"
[1] "ENDing cell.. 178 With feature... SurfaceArea"
[1] "STARTing cell.. 272 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.00327 0.07335 0.01664 0.17306 0.15041 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 272"
[1] "ENDing cell.. 272 With feature... SurfaceArea"
[1] "STARTing cell.. 43 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0122 -0.1022 -0.1702 0.0139 -0.1145 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 43"
[1] "ENDing cell.. 43 With feature... SurfaceArea"
[1] "STARTing cell.. 99 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.15 0.158 0.27 0.321 0.417 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 99"
[1] "ENDing cell.. 99 With feature... SurfaceArea"
[1] "STARTing cell.. 155 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0599 0.1075 -0.0201 -0.0425 0.1833 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 155"
[1] "ENDing cell.. 155 With feature... SurfaceArea"
[1] "STARTing cell.. 148 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.11 -0.03702 -0.09113 -0.00592 0.11953 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 148"
[1] "ENDing cell.. 148 With feature... SurfaceArea"
[1] "STARTing cell.. 215 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0513 -0.1459 -0.1665 -0.1006 -0.0767 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 215"
[1] "ENDing cell.. 215 With feature... SurfaceArea"
[1] "STARTing cell.. 149 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.05253 0.07833 -0.00123 -0.07141 -0.01004 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 149"
[1] "ENDing cell.. 149 With feature... SurfaceArea"
[1] "STARTing cell.. 89 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.234 0.208 0.185 0.235 0.204 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 89"
[1] "ENDing cell.. 89 With feature... SurfaceArea"
[1] "STARTing cell.. 156 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0039 0.03217 0.08458 -0.09456 -0.00421 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 156"
[1] "ENDing cell.. 156 With feature... SurfaceArea"
[1] "STARTing cell.. 150 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.1611 -0.1342 -0.0306 0.0618 0.066 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 150"
[1] "ENDing cell.. 150 With feature... SurfaceArea"
[1] "STARTing cell.. 42 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0827 0.0194 0.1048 0.2541 0.3878 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 42"
[1] "ENDing cell.. 42 With feature... SurfaceArea"
[1] "STARTing cell.. 44 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.12085 -0.11128 -0.11384 -0.00959 0.00765 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 44"
[1] "ENDing cell.. 44 With feature... SurfaceArea"
[1] "STARTing cell.. 100 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.115 0.0473 -0.2592 -0.1149 -0.243 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 100"
[1] "ENDing cell.. 100 With feature... SurfaceArea"
[1] "STARTing cell.. 153 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.374 0.435 0.48 0.561 0.599 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 153"
[1] "ENDing cell.. 153 With feature... SurfaceArea"
[1] "STARTing cell.. 47 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.1678 -0.0261 -0.1169 -0.1129 -0.1391 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 47"
[1] "ENDing cell.. 47 With feature... SurfaceArea"
[1] "STARTing cell.. 202 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.186 0.223 0.166 0.203 0.199 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 202"
[1] "ENDing cell.. 202 With feature... SurfaceArea"
[1] "STARTing cell.. 51 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.097 0.0803 -0.1729 -0.2518 -0.341 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 51"
[1] "ENDing cell.. 51 With feature... SurfaceArea"
[1] "STARTing cell.. 260 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.2131 -0.1453 -0.08 -0.1389 -0.0576 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 260"
[1] "ENDing cell.. 260 With feature... SurfaceArea"
[1] "STARTing cell.. 217 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0345 0.0365 0.1551 0.1379 0.2369 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 217"
[1] "ENDing cell.. 217 With feature... SurfaceArea"
[1] "STARTing cell.. 182 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0941 -0.111 -0.0591 -0.0633 -0.1109 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 182"
[1] "ENDing cell.. 182 With feature... SurfaceArea"
[1] "STARTing cell.. 184 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.139 0.1293 0.0248 0.1452 -0.1103 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 184"
[1] "ENDing cell.. 184 With feature... SurfaceArea"
[1] "STARTing cell.. 45 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.149 -0.186 -0.177 -0.181 -0.21 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 45"
[1] "ENDing cell.. 45 With feature... SurfaceArea"
[1] "STARTing cell.. 241 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.1178 0.0742 0.1412 0.1416 0.1249 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 241"
[1] "ENDing cell.. 241 With feature... SurfaceArea"
[1] "STARTing cell.. 82 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.322 0.358 0.381 0.415 0.434 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 82"
[1] "ENDing cell.. 82 With feature... SurfaceArea"
[1] "STARTing cell.. 261 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.1057 -0.0182 0.0377 0.0174 0.1194 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 261"
[1] "ENDing cell.. 261 With feature... SurfaceArea"
[1] "STARTing cell.. 262 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.08164 -0.06551 -0.00307 -0.1684 -0.05749 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 262"
[1] "ENDing cell.. 262 With feature... SurfaceArea"
[1] "STARTing cell.. 216 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.15398 -0.07322 -0.00661 0.07267 0.00894 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 216"
[1] "ENDing cell.. 216 With feature... SurfaceArea"
[1] "STARTing cell.. 66 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.161 0.1794 0.0885 0.2152 0.019 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 66"
[1] "ENDing cell.. 66 With feature... SurfaceArea"
[1] "STARTing cell.. 128 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.1708 0.2725 0.191 0.2667 -0.0152 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 128"
[1] "ENDing cell.. 128 With feature... SurfaceArea"
[1] "STARTing cell.. 50 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.1919 -0.0122 -0.186 -0.0551 -0.1142 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 50"
[1] "ENDing cell.. 50 With feature... SurfaceArea"
[1] "STARTing cell.. 5 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0912 0.1959 0.1369 0.0706 -0.0169 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 5"
[1] "ENDing cell.. 5 With feature... SurfaceArea"
[1] "STARTing cell.. 26 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.1557 0.1416 -0.0272 0.0251 -0.1079 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 26"
[1] "ENDing cell.. 26 With feature... SurfaceArea"
[1] "STARTing cell.. 129 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.16 -0.191 -0.189 -0.142 -0.154 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 129"
[1] "ENDing cell.. 129 With feature... SurfaceArea"
[1] "STARTing cell.. 67 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0313 -0.0633 -0.0329 -0.0254 -0.0881 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 67"
[1] "ENDing cell.. 67 With feature... SurfaceArea"
[1] "STARTing cell.. 247 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.297 0.248 0.307 0.321 0.329 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 247"
[1] "ENDing cell.. 247 With feature... SurfaceArea"
[1] "STARTing cell.. 134 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.2373 0.2702 0.1439 0.2001 0.0848 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 134"
[1] "ENDing cell.. 134 With feature... SurfaceArea"
[1] "STARTing cell.. 93 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0938 -0.0257 -0.0426 -0.124 -0.1447 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 93"
[1] "ENDing cell.. 93 With feature... SurfaceArea"
[1] "STARTing cell.. 248 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.00587 0.03379 0.12544 0.02332 0.22828 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 248"
[1] "ENDing cell.. 248 With feature... SurfaceArea"
[1] "STARTing cell.. 157 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.319 -0.207 -0.27 -0.135 -0.14 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 157"
[1] "ENDing cell.. 157 With feature... SurfaceArea"
[1] "STARTing cell.. 46 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.179 -0.121 -0.199 -0.177 -0.177 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 46"
[1] "ENDing cell.. 46 With feature... SurfaceArea"
[1] "STARTing cell.. 242 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.04588 -0.02364 0.00414 0.10843 0.0742 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 242"
[1] "ENDing cell.. 242 With feature... SurfaceArea"
[1] "STARTing cell.. 159 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0101 0.0272 -0.1019 -0.1292 -0.0991 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 159"
[1] "ENDing cell.. 159 With feature... SurfaceArea"
[1] "STARTing cell.. 186 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0956 0.098 -0.1167 -0.315 -0.0058 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 186"
[1] "ENDing cell.. 186 With feature... SurfaceArea"
[1] "STARTing cell.. 228 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.13 0.233 0.211 0.137 0.19 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 228"
[1] "ENDing cell.. 228 With feature... SurfaceArea"
[1] "STARTing cell.. 160 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.282 -0.278 -0.289 -0.35 -0.234 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 160"
[1] "ENDing cell.. 160 With feature... SurfaceArea"
[1] "STARTing cell.. 279 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0364 0.1113 0.1918 0.1388 0.0358 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 279"
[1] "ENDing cell.. 279 With feature... SurfaceArea"
[1] "STARTing cell.. 53 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.1315 -0.1171 -0.1824 -0.0503 0.1199 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 53"
[1] "ENDing cell.. 53 With feature... SurfaceArea"
[1] "STARTing cell.. 94 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.1145 0.167 0.1426 -0.0629 -0.1748 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 94"
[1] "ENDing cell.. 94 With feature... SurfaceArea"
[1] "STARTing cell.. 121 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.091 0.0688 0.274 0.2193 0.0169 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 121"
[1] "ENDing cell.. 121 With feature... SurfaceArea"
[1] "STARTing cell.. 213 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.279 -0.2829 -0.1171 -0.1955 -0.0886 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 213"
[1] "ENDing cell.. 213 With feature... SurfaceArea"
[1] "STARTing cell.. 109 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.177 -0.245 -0.226 -0.212 -0.319 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 109"
[1] "ENDing cell.. 109 With feature... SurfaceArea"
[1] "STARTing cell.. 110 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.248771 0.124046 0.096711 -0.000444 0.043434 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 110"
[1] "ENDing cell.. 110 With feature... SurfaceArea"
[1] "STARTing cell.. 101 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.2738 -0.1526 -0.1872 -0.1659 -0.0884 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 101"
[1] "ENDing cell.. 101 With feature... SurfaceArea"
[1] "STARTing cell.. 187 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.1034 0.0761 0.0129 -0.0748 -0.1329 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 187"
[1] "ENDing cell.. 187 With feature... SurfaceArea"
[1] "STARTing cell.. 263 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.1147 0.0759 0.0152 -0.0465 -0.0833 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 263"
[1] "ENDing cell.. 263 With feature... SurfaceArea"
[1] "STARTing cell.. 218 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.0271 -0.1234 -0.1074 0.0193 0.0468 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 218"
[1] "ENDing cell.. 218 With feature... SurfaceArea"
[1] "STARTing cell.. 19 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.1913 -0.0376 0.0377 0.1351 0.1027 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 19"
[1] "ENDing cell.. 19 With feature... SurfaceArea"
[1] "STARTing cell.. 20 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] 0.115 0.0226 0.1452 0.0451 0.1313 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 20"
[1] "ENDing cell.. 20 With feature... SurfaceArea"
[1] "STARTing cell.. 224 With feature... SurfaceArea"
List of 6
$ acf : num [1:27, 1, 1] -0.0833 -0.0392 0.1051 0.2427 0.3468 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 224"
[1] "ENDing cell.. 224 With feature... SurfaceArea"
[1] "STARTing cell.. 219 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.066 0.0401 -0.0451 -0.0513 -0.1273 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 219"
[1] "ENDing cell.. 219 With feature... MajorAxis"
[1] "STARTing cell.. 264 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0281 0.0245 0.1023 0.1097 0.0485 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 264"
[1] "ENDing cell.. 264 With feature... MajorAxis"
[1] "STARTing cell.. 136 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1093 -0.0199 0.0741 0.1198 0.0885 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 136"
[1] "ENDing cell.. 136 With feature... MajorAxis"
[1] "STARTing cell.. 54 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.518 -0.493 -0.424 -0.333 -0.204 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 54"
[1] "ENDing cell.. 54 With feature... MajorAxis"
[1] "STARTing cell.. 69 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.2178 -0.2173 -0.1563 -0.113 -0.0357 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 69"
[1] "ENDing cell.. 69 With feature... MajorAxis"
[1] "STARTing cell.. 111 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.207 -0.247 -0.37 -0.429 -0.392 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 111"
[1] "ENDing cell.. 111 With feature... MajorAxis"
[1] "STARTing cell.. 189 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.198 0.208 0.208 0.201 0.2 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 189"
[1] "ENDing cell.. 189 With feature... MajorAxis"
[1] "STARTing cell.. 171 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.3614 -0.3387 -0.2954 -0.1878 -0.0627 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 171"
[1] "ENDing cell.. 171 With feature... MajorAxis"
[1] "STARTing cell.. 231 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.248 0.353 0.383 0.42 0.33 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 231"
[1] "ENDing cell.. 231 With feature... MajorAxis"
[1] "STARTing cell.. 205 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.202 -0.1863 -0.2498 -0.2423 -0.0548 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 205"
[1] "ENDing cell.. 205 With feature... MajorAxis"
[1] "STARTing cell.. 244 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.523 -0.554 -0.601 -0.62 -0.589 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 244"
[1] "ENDing cell.. 244 With feature... MajorAxis"
[1] "STARTing cell.. 1 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.00129 0.06415 0.07424 0.09429 0.11381 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 1"
[1] "ENDing cell.. 1 With feature... MajorAxis"
[1] "STARTing cell.. 36 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.103 -0.158 -0.207 -0.218 -0.261 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 36"
[1] "ENDing cell.. 36 With feature... MajorAxis"
[1] "STARTing cell.. 7 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1188 -0.1079 -0.0525 -0.0367 0.1262 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 7"
[1] "ENDing cell.. 7 With feature... MajorAxis"
[1] "STARTing cell.. 102 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.338 0.397 0.42 0.447 0.489 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 102"
[1] "ENDing cell.. 102 With feature... MajorAxis"
[1] "STARTing cell.. 22 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.302 0.355 0.325 0.33 0.353 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 22"
[1] "ENDing cell.. 22 With feature... MajorAxis"
[1] "STARTing cell.. 188 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.131 0.224 0.231 0.298 0.293 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 188"
[1] "ENDing cell.. 188 With feature... MajorAxis"
[1] "STARTing cell.. 55 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.212 0.192 0.135 0.137 0.201 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 55"
[1] "ENDing cell.. 55 With feature... MajorAxis"
[1] "STARTing cell.. 243 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0058 -0.0148 0.0307 0.0998 0.162 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 243"
[1] "ENDing cell.. 243 With feature... MajorAxis"
[1] "STARTing cell.. 123 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.16 -0.0851 -0.2708 -0.2427 -0.1319 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 123"
[1] "ENDing cell.. 123 With feature... MajorAxis"
[1] "STARTing cell.. 21 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.454 0.529 0.608 0.69 0.742 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 21"
[1] "ENDing cell.. 21 With feature... MajorAxis"
[1] "STARTing cell.. 163 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.09964 0.12207 0.00423 -0.00054 -0.00195 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 163"
[1] "ENDing cell.. 163 With feature... MajorAxis"
[1] "STARTing cell.. 112 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0604 -0.0111 0.1024 0.073 0.0806 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 112"
[1] "ENDing cell.. 112 With feature... MajorAxis"
[1] "STARTing cell.. 33 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.337 -0.395 -0.418 -0.481 -0.5 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 33"
[1] "ENDing cell.. 33 With feature... MajorAxis"
[1] "STARTing cell.. 172 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1541 -0.122 -0.0569 -0.1225 -0.1889 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 172"
[1] "ENDing cell.. 172 With feature... MajorAxis"
[1] "STARTing cell.. 95 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.141 -0.118 -0.209 -0.17 -0.208 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 95"
[1] "ENDing cell.. 95 With feature... MajorAxis"
[1] "STARTing cell.. 30 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.215 -0.2067 -0.1147 0.0866 0.2735 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 30"
[1] "ENDing cell.. 30 With feature... MajorAxis"
[1] "STARTing cell.. 203 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.00458 -0.16294 -0.03894 -0.05302 0.0612 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 203"
[1] "ENDing cell.. 203 With feature... MajorAxis"
[1] "STARTing cell.. 274 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.187 0.179 0.172 0.141 0.202 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 274"
[1] "ENDing cell.. 274 With feature... MajorAxis"
[1] "STARTing cell.. 131 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.00443 -0.24001 -0.44931 -0.27574 -0.16154 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 131"
[1] "ENDing cell.. 131 With feature... MajorAxis"
[1] "STARTing cell.. 68 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0376 0.0377 0.1078 0.1791 0.1837 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 68"
[1] "ENDing cell.. 68 With feature... MajorAxis"
[1] "STARTing cell.. 71 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.496 0.543 0.602 0.658 0.569 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 71"
[1] "ENDing cell.. 71 With feature... MajorAxis"
[1] "STARTing cell.. 135 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.44 0.464 0.47 0.462 0.509 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 135"
[1] "ENDing cell.. 135 With feature... MajorAxis"
[1] "STARTing cell.. 84 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.1544 0.1688 0.114 0.0612 0.0397 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 84"
[1] "ENDing cell.. 84 With feature... MajorAxis"
[1] "STARTing cell.. 206 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0869 -0.1173 -0.1708 -0.2298 -0.2879 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 206"
[1] "ENDing cell.. 206 With feature... MajorAxis"
[1] "STARTing cell.. 255 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.318 0.278 0.217 0.215 0.291 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 255"
[1] "ENDing cell.. 255 With feature... MajorAxis"
[1] "STARTing cell.. 64 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.01125 -0.06379 -0.01084 0.00872 -0.01049 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 64"
[1] "ENDing cell.. 64 With feature... MajorAxis"
[1] "STARTing cell.. 9 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0488 -0.164 -0.0534 -0.0249 -0.0123 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 9"
[1] "ENDing cell.. 9 With feature... MajorAxis"
[1] "STARTing cell.. 122 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0455 0.0579 0.113 0.1964 0.2766 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 122"
[1] "ENDing cell.. 122 With feature... MajorAxis"
[1] "STARTing cell.. 23 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0416 0.0487 0.0337 0.2187 0.1864 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 23"
[1] "ENDing cell.. 23 With feature... MajorAxis"
[1] "STARTing cell.. 162 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.598 -0.46 -0.369 -0.297 -0.263 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 162"
[1] "ENDing cell.. 162 With feature... MajorAxis"
[1] "STARTing cell.. 229 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1106 -0.129 -0.0691 -0.0958 -0.1621 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 229"
[1] "ENDing cell.. 229 With feature... MajorAxis"
[1] "STARTing cell.. 57 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.05056 0.00584 -0.05467 -0.04495 -0.03839 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 57"
[1] "ENDing cell.. 57 With feature... MajorAxis"
[1] "STARTing cell.. 249 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0641 0.048 0.1834 0.2902 0.3389 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 249"
[1] "ENDing cell.. 249 With feature... MajorAxis"
[1] "STARTing cell.. 125 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.228 -0.297 -0.32 -0.393 -0.349 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 125"
[1] "ENDing cell.. 125 With feature... MajorAxis"
[1] "STARTing cell.. 8 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.273 -0.184 -0.243 -0.218 -0.209 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 8"
[1] "ENDing cell.. 8 With feature... MajorAxis"
[1] "STARTing cell.. 165 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.03754 0.00736 -0.13862 -0.06337 -0.0875 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 165"
[1] "ENDing cell.. 165 With feature... MajorAxis"
[1] "STARTing cell.. 83 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.137 0.259 0.284 0.335 0.34 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 83"
[1] "ENDing cell.. 83 With feature... MajorAxis"
[1] "STARTing cell.. 113 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0316 0.0412 -0.0453 0.2367 0.2325 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 113"
[1] "ENDing cell.. 113 With feature... MajorAxis"
[1] "STARTing cell.. 220 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0505 -0.0193 -0.045 -0.0575 -0.0253 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 220"
[1] "ENDing cell.. 220 With feature... MajorAxis"
[1] "STARTing cell.. 174 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0584 0.0289 0.1969 0.2413 0.1928 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 174"
[1] "ENDing cell.. 174 With feature... MajorAxis"
[1] "STARTing cell.. 56 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.426 0.425 0.458 0.533 0.59 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 56"
[1] "ENDing cell.. 56 With feature... MajorAxis"
[1] "STARTing cell.. 173 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.2827 -0.1884 -0.2189 -0.1204 -0.0795 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 173"
[1] "ENDing cell.. 173 With feature... MajorAxis"
[1] "STARTing cell.. 232 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.172 0.221 0.361 0.389 0.481 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 232"
[1] "ENDing cell.. 232 With feature... MajorAxis"
[1] "STARTing cell.. 37 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.00385 0.05189 0.16115 0.1108 0.13652 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 37"
[1] "ENDing cell.. 37 With feature... MajorAxis"
[1] "STARTing cell.. 86 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.128 0.155 0.196 0.236 0.264 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 86"
[1] "ENDing cell.. 86 With feature... MajorAxis"
[1] "STARTing cell.. 103 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0507 0.0947 0.161 0.232 0.2854 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 103"
[1] "ENDing cell.. 103 With feature... MajorAxis"
[1] "STARTing cell.. 208 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.263 -0.251 -0.275 -0.276 -0.258 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 208"
[1] "ENDing cell.. 208 With feature... MajorAxis"
[1] "STARTing cell.. 190 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.06719 0.03815 -0.00417 -0.12841 0.02125 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 190"
[1] "ENDing cell.. 190 With feature... MajorAxis"
[1] "STARTing cell.. 4 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.282 0.301 0.336 0.355 0.342 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 4"
[1] "ENDing cell.. 4 With feature... MajorAxis"
[1] "STARTing cell.. 238 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.07355 0.05823 -0.00417 0.0667 -0.18636 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 238"
[1] "ENDing cell.. 238 With feature... MajorAxis"
[1] "STARTing cell.. 11 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.00748 -0.04843 -0.26143 -0.10272 -0.22878 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 11"
[1] "ENDing cell.. 11 With feature... MajorAxis"
[1] "STARTing cell.. 29 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.384 -0.482 -0.547 -0.588 -0.588 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 29"
[1] "ENDing cell.. 29 With feature... MajorAxis"
[1] "STARTing cell.. 59 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.431 -0.424 -0.312 -0.28 -0.176 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 59"
[1] "ENDing cell.. 59 With feature... MajorAxis"
[1] "STARTing cell.. 96 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 1.77e-03 -2.35e-05 -6.56e-02 -3.44e-02 -8.74e-02 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 96"
[1] "ENDing cell.. 96 With feature... MajorAxis"
[1] "STARTing cell.. 204 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.154 0.179 0.264 0.314 0.133 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 204"
[1] "ENDing cell.. 204 With feature... MajorAxis"
[1] "STARTing cell.. 275 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1851 -0.1372 -0.0386 0.0465 0.155 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 275"
[1] "ENDing cell.. 275 With feature... MajorAxis"
[1] "STARTing cell.. 130 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.292 0.288 0.306 0.362 0.349 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 130"
[1] "ENDing cell.. 130 With feature... MajorAxis"
[1] "STARTing cell.. 137 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.060956 0.101034 0.026297 0.000266 -0.10088 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 137"
[1] "ENDing cell.. 137 With feature... MajorAxis"
[1] "STARTing cell.. 140 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1802 -0.1229 -0.0652 -0.0188 0.0616 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 140"
[1] "ENDing cell.. 140 With feature... MajorAxis"
[1] "STARTing cell.. 226 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.476 0.544 0.589 0.505 0.363 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 226"
[1] "ENDing cell.. 226 With feature... MajorAxis"
[1] "STARTing cell.. 74 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.444 -0.308 -0.379 -0.256 -0.184 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 74"
[1] "ENDing cell.. 74 With feature... MajorAxis"
[1] "STARTing cell.. 256 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.17129 -0.09619 -0.02989 -0.0349 0.00332 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 256"
[1] "ENDing cell.. 256 With feature... MajorAxis"
[1] "STARTing cell.. 65 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.04461 0.04879 0.06954 0.05629 -0.00535 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 65"
[1] "ENDing cell.. 65 With feature... MajorAxis"
[1] "STARTing cell.. 87 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.528 -0.537 -0.588 -0.502 -0.491 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 87"
[1] "ENDing cell.. 87 With feature... MajorAxis"
[1] "STARTing cell.. 124 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.172 0.0914 -0.1433 -0.2749 -0.2541 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 124"
[1] "ENDing cell.. 124 With feature... MajorAxis"
[1] "STARTing cell.. 210 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.328 -0.491 -0.583 -0.678 -0.676 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 210"
[1] "ENDing cell.. 210 With feature... MajorAxis"
[1] "STARTing cell.. 164 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0493 0.0156 0.0684 0.1249 0.2052 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 164"
[1] "ENDing cell.. 164 With feature... MajorAxis"
[1] "STARTing cell.. 230 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0367 0.0369 0.1486 0.1705 0.0963 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 230"
[1] "ENDing cell.. 230 With feature... MajorAxis"
[1] "STARTing cell.. 13 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.2216 0.1676 0.0634 -0.042 -0.0593 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 13"
[1] "ENDing cell.. 13 With feature... MajorAxis"
[1] "STARTing cell.. 250 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.06979 -0.04866 -0.00668 -0.01201 0.00852 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 250"
[1] "ENDing cell.. 250 With feature... MajorAxis"
[1] "STARTing cell.. 10 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.304 0.305 0.322 0.395 0.421 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 10"
[1] "ENDing cell.. 10 With feature... MajorAxis"
[1] "STARTing cell.. 85 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0487 -0.0163 0.0727 0.1212 0.1597 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 85"
[1] "ENDing cell.. 85 With feature... MajorAxis"
[1] "STARTing cell.. 61 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.275 0.256 0.229 0.17 0.117 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 61"
[1] "ENDing cell.. 61 With feature... MajorAxis"
[1] "STARTing cell.. 221 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.23 -0.228 -0.212 -0.196 -0.119 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 221"
[1] "ENDing cell.. 221 With feature... MajorAxis"
[1] "STARTing cell.. 265 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.177 0.168 0.223 0.284 0.325 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 265"
[1] "ENDing cell.. 265 With feature... MajorAxis"
[1] "STARTing cell.. 58 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0872 -0.0983 -0.1933 -0.1338 -0.2303 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 58"
[1] "ENDing cell.. 58 With feature... MajorAxis"
[1] "STARTing cell.. 114 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.1984 0.0425 -0.0412 -0.1642 -0.1354 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 114"
[1] "ENDing cell.. 114 With feature... MajorAxis"
[1] "STARTing cell.. 233 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0281 0.0451 0.1443 0.2223 0.341 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 233"
[1] "ENDing cell.. 233 With feature... MajorAxis"
[1] "STARTing cell.. 246 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0892 0.0475 0.1665 0.3957 0.3468 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 246"
[1] "ENDing cell.. 246 With feature... MajorAxis"
[1] "STARTing cell.. 104 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.139 0.141 0.118 0.111 0.124 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 104"
[1] "ENDing cell.. 104 With feature... MajorAxis"
[1] "STARTing cell.. 76 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0642 0.2168 0.2612 0.2543 0.3946 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 76"
[1] "ENDing cell.. 76 With feature... MajorAxis"
[1] "STARTing cell.. 239 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.1875 0.1839 0.1296 0.0871 0.1517 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 239"
[1] "ENDing cell.. 239 With feature... MajorAxis"
[1] "STARTing cell.. 88 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1075 0.1 -0.0653 0.0211 -0.0494 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 88"
[1] "ENDing cell.. 88 With feature... MajorAxis"
[1] "STARTing cell.. 211 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.049 -0.0401 0.0117 0.0852 0.0741 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 211"
[1] "ENDing cell.. 211 With feature... MajorAxis"
[1] "STARTing cell.. 24 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0416 0.1563 -0.0676 0.0153 -0.2046 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 24"
[1] "ENDing cell.. 24 With feature... MajorAxis"
[1] "STARTing cell.. 276 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.01684 0.00359 -0.02742 0.06506 -0.08332 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 276"
[1] "ENDing cell.. 276 With feature... MajorAxis"
[1] "STARTing cell.. 115 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.2526 0.1961 -0.0142 -0.039 -0.1714 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 115"
[1] "ENDing cell.. 115 With feature... MajorAxis"
[1] "STARTing cell.. 132 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.297 0.372 0.428 0.487 0.524 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 132"
[1] "ENDing cell.. 132 With feature... MajorAxis"
[1] "STARTing cell.. 138 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.245 -0.314 -0.364 -0.376 -0.333 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 138"
[1] "ENDing cell.. 138 With feature... MajorAxis"
[1] "STARTing cell.. 227 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.106 0.129 0.253 0.315 0.296 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 227"
[1] "ENDing cell.. 227 With feature... MajorAxis"
[1] "STARTing cell.. 257 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.112839 0.081832 0.008922 0.000352 -0.095027 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 257"
[1] "ENDing cell.. 257 With feature... MajorAxis"
[1] "STARTing cell.. 133 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0683 0.2241 0.0848 0.1856 -0.0305 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 133"
[1] "ENDing cell.. 133 With feature... MajorAxis"
[1] "STARTing cell.. 126 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0475 0.0185 0.0966 0.2564 0.3255 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 126"
[1] "ENDing cell.. 126 With feature... MajorAxis"
[1] "STARTing cell.. 78 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0633 0.1176 0.1476 0.1963 0.2343 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 78"
[1] "ENDing cell.. 78 With feature... MajorAxis"
[1] "STARTing cell.. 166 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.2191 -0.0675 -0.2535 -0.3824 -0.1835 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 166"
[1] "ENDing cell.. 166 With feature... MajorAxis"
[1] "STARTing cell.. 195 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.13 0.187 0.239 0.269 0.259 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 195"
[1] "ENDing cell.. 195 With feature... MajorAxis"
[1] "STARTing cell.. 251 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.159 0.366 0.419 0.302 0.33 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 251"
[1] "ENDing cell.. 251 With feature... MajorAxis"
[1] "STARTing cell.. 12 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.444 0.45 0.482 0.476 0.496 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 12"
[1] "ENDing cell.. 12 With feature... MajorAxis"
[1] "STARTing cell.. 222 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.27598 -0.13582 -0.01688 0.00891 -0.00363 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 222"
[1] "ENDing cell.. 222 With feature... MajorAxis"
[1] "STARTing cell.. 60 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1963 -0.1989 -0.1291 -0.054 0.0395 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 60"
[1] "ENDing cell.. 60 With feature... MajorAxis"
[1] "STARTing cell.. 63 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.107 -0.1721 -0.1224 -0.1956 -0.0109 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 63"
[1] "ENDing cell.. 63 With feature... MajorAxis"
[1] "STARTing cell.. 175 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.012 0.0336 0.1241 0.1357 0.2403 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 175"
[1] "ENDing cell.. 175 With feature... MajorAxis"
[1] "STARTing cell.. 234 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.63 0.664 0.607 0.53 0.552 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 234"
[1] "ENDing cell.. 234 With feature... MajorAxis"
[1] "STARTing cell.. 192 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0874 -0.0734 -0.0643 0.0745 -0.0088 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 192"
[1] "ENDing cell.. 192 With feature... MajorAxis"
[1] "STARTing cell.. 240 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.302 0.382 0.322 0.185 0.214 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 240"
[1] "ENDing cell.. 240 With feature... MajorAxis"
[1] "STARTing cell.. 80 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0438 0.098 0.0595 0.0966 0.1322 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 80"
[1] "ENDing cell.. 80 With feature... MajorAxis"
[1] "STARTing cell.. 97 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1877 -0.1878 -0.0346 -0.0354 -0.1749 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 97"
[1] "ENDing cell.. 97 With feature... MajorAxis"
[1] "STARTing cell.. 207 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0808 -0.107 -0.0512 -0.1055 -0.1502 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 207"
[1] "ENDing cell.. 207 With feature... MajorAxis"
[1] "STARTing cell.. 277 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.283 0.251 0.243 0.248 0.401 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 277"
[1] "ENDing cell.. 277 With feature... MajorAxis"
[1] "STARTing cell.. 73 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.381 -0.449 -0.465 -0.546 -0.553 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 73"
[1] "ENDing cell.. 73 With feature... MajorAxis"
[1] "STARTing cell.. 139 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.14277 0.0913 -0.00395 -0.04431 -0.0687 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 139"
[1] "ENDing cell.. 139 With feature... MajorAxis"
[1] "STARTing cell.. 258 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.106 -0.135 -0.166 -0.241 -0.258 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 258"
[1] "ENDing cell.. 258 With feature... MajorAxis"
[1] "STARTing cell.. 179 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.461 0.389 0.342 0.337 0.342 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 179"
[1] "ENDing cell.. 179 With feature... MajorAxis"
[1] "STARTing cell.. 167 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.00176 0.08574 0.24155 0.25684 0.13336 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 167"
[1] "ENDing cell.. 167 With feature... MajorAxis"
[1] "STARTing cell.. 252 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.029418 -0.000137 0.011236 0.011279 0.000758 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 252"
[1] "ENDing cell.. 252 With feature... MajorAxis"
[1] "STARTing cell.. 81 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.053 -0.253 -0.16 -0.149 -0.148 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 81"
[1] "ENDing cell.. 81 With feature... MajorAxis"
[1] "STARTing cell.. 14 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1256 -0.0588 0.0267 0.0439 0.0493 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 14"
[1] "ENDing cell.. 14 With feature... MajorAxis"
[1] "STARTing cell.. 199 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.093 -0.0399 -0.1167 -0.1459 -0.0268 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 199"
[1] "ENDing cell.. 199 With feature... MajorAxis"
[1] "STARTing cell.. 266 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.233 0.261 0.342 0.4 0.457 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 266"
[1] "ENDing cell.. 266 With feature... MajorAxis"
[1] "STARTing cell.. 116 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0621 0.09063 0.0571 -0.00323 0.09784 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 116"
[1] "ENDing cell.. 116 With feature... MajorAxis"
[1] "STARTing cell.. 176 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1105 -0.1113 -0.0364 -0.0387 -0.0313 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 176"
[1] "ENDing cell.. 176 With feature... MajorAxis"
[1] "STARTing cell.. 235 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0806 0.1036 0.1363 0.2497 0.2452 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 235"
[1] "ENDing cell.. 235 With feature... MajorAxis"
[1] "STARTing cell.. 38 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0588 0.1269 0.1613 0.2476 0.2369 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 38"
[1] "ENDing cell.. 38 With feature... MajorAxis"
[1] "STARTing cell.. 105 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.284 0.274 0.291 0.327 0.276 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 105"
[1] "ENDing cell.. 105 With feature... MajorAxis"
[1] "STARTing cell.. 193 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.297 -0.246 -0.292 -0.308 -0.392 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 193"
[1] "ENDing cell.. 193 With feature... MajorAxis"
[1] "STARTing cell.. 181 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0486 0.0505 0.0419 0.0212 0.0523 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 181"
[1] "ENDing cell.. 181 With feature... MajorAxis"
[1] "STARTing cell.. 28 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0919 0.1558 0.116 0.2174 0.2097 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 28"
[1] "ENDing cell.. 28 With feature... MajorAxis"
[1] "STARTing cell.. 98 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.09274 -0.01861 0.00835 0.02674 0.06623 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 98"
[1] "ENDing cell.. 98 With feature... MajorAxis"
[1] "STARTing cell.. 200 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0145 0.0656 0.1309 0.181 0.2535 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 200"
[1] "ENDing cell.. 200 With feature... MajorAxis"
[1] "STARTing cell.. 209 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1939 -0.1665 -0.0907 -0.0545 0.0186 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 209"
[1] "ENDing cell.. 209 With feature... MajorAxis"
[1] "STARTing cell.. 278 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.434 0.48 0.531 0.573 0.59 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 278"
[1] "ENDing cell.. 278 With feature... MajorAxis"
[1] "STARTing cell.. 75 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.464 -0.317 -0.349 -0.309 -0.243 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 75"
[1] "ENDing cell.. 75 With feature... MajorAxis"
[1] "STARTing cell.. 141 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.10839 -0.05668 -0.05616 0.00542 -0.02987 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 141"
[1] "ENDing cell.. 141 With feature... MajorAxis"
[1] "STARTing cell.. 259 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.00681 0.07655 0.07844 0.16998 0.18914 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 259"
[1] "ENDing cell.. 259 With feature... MajorAxis"
[1] "STARTing cell.. 16 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.202 -0.177 -0.16 -0.207 -0.181 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 16"
[1] "ENDing cell.. 16 With feature... MajorAxis"
[1] "STARTing cell.. 267 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.1529 0.1823 0.1559 0.113 0.0207 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 267"
[1] "ENDing cell.. 267 With feature... MajorAxis"
[1] "STARTing cell.. 201 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.374 -0.471 -0.564 -0.542 -0.536 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 201"
[1] "ENDing cell.. 201 With feature... MajorAxis"
[1] "STARTing cell.. 117 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.2019 -0.1794 -0.1474 -0.1115 -0.0215 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 117"
[1] "ENDing cell.. 117 With feature... MajorAxis"
[1] "STARTing cell.. 177 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0352 0.1099 0.1194 0.2393 0.2914 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 177"
[1] "ENDing cell.. 177 With feature... MajorAxis"
[1] "STARTing cell.. 15 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.3025 -0.2328 -0.1433 -0.011 0.0687 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 15"
[1] "ENDing cell.. 15 With feature... MajorAxis"
[1] "STARTing cell.. 106 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.4 -0.399 -0.393 -0.366 -0.324 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 106"
[1] "ENDing cell.. 106 With feature... MajorAxis"
[1] "STARTing cell.. 194 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.02293 0.01336 0.00229 -0.05296 -0.09155 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 194"
[1] "ENDing cell.. 194 With feature... MajorAxis"
[1] "STARTing cell.. 31 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0606 0.0181 -0.0474 -0.108 -0.1393 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 31"
[1] "ENDing cell.. 31 With feature... MajorAxis"
[1] "STARTing cell.. 77 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.488 -0.481 -0.498 -0.527 -0.461 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 77"
[1] "ENDing cell.. 77 With feature... MajorAxis"
[1] "STARTing cell.. 91 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1382 0.0423 0.0627 0.1222 0.2245 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 91"
[1] "ENDing cell.. 91 With feature... MajorAxis"
[1] "STARTing cell.. 142 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.1867 0.1597 0.1271 0.1051 0.0672 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 142"
[1] "ENDing cell.. 142 With feature... MajorAxis"
[1] "STARTing cell.. 17 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.2328 0.1112 -0.0266 -0.0813 0.0114 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 17"
[1] "ENDing cell.. 17 With feature... MajorAxis"
[1] "STARTing cell.. 62 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.1582 0.1617 0.1399 0.1174 0.0817 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 62"
[1] "ENDing cell.. 62 With feature... MajorAxis"
[1] "STARTing cell.. 168 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.361 -0.22 -0.229 -0.191 -0.195 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 168"
[1] "ENDing cell.. 168 With feature... MajorAxis"
[1] "STARTing cell.. 127 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.1757 0.1195 -0.0414 -0.1171 -0.2675 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 127"
[1] "ENDing cell.. 127 With feature... MajorAxis"
[1] "STARTing cell.. 253 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.155 -0.196 -0.259 -0.313 -0.353 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 253"
[1] "ENDing cell.. 253 With feature... MajorAxis"
[1] "STARTing cell.. 118 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.2066 -0.145 -0.128 -0.0639 -0.0621 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 118"
[1] "ENDing cell.. 118 With feature... MajorAxis"
[1] "STARTing cell.. 39 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.153 0.131 0.205 0.32 0.299 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 39"
[1] "ENDing cell.. 39 With feature... MajorAxis"
[1] "STARTing cell.. 107 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.269 0.319 0.373 0.47 0.504 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 107"
[1] "ENDing cell.. 107 With feature... MajorAxis"
[1] "STARTing cell.. 196 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0863 -0.0534 -0.0547 -0.0869 -0.0862 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 196"
[1] "ENDing cell.. 196 With feature... MajorAxis"
[1] "STARTing cell.. 212 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.194 -0.285 -0.45 -0.518 -0.473 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 212"
[1] "ENDing cell.. 212 With feature... MajorAxis"
[1] "STARTing cell.. 79 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.1659 0.1174 -0.0635 -0.1643 -0.1223 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 79"
[1] "ENDing cell.. 79 With feature... MajorAxis"
[1] "STARTing cell.. 143 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.04553 0.03211 -0.00531 -0.03827 -0.07896 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 143"
[1] "ENDing cell.. 143 With feature... MajorAxis"
[1] "STARTing cell.. 92 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.17266 -0.14744 0.01058 0.00867 0.10322 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 92"
[1] "ENDing cell.. 92 With feature... MajorAxis"
[1] "STARTing cell.. 169 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1749 -0.2303 -0.2485 -0.1811 -0.0809 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 169"
[1] "ENDing cell.. 169 With feature... MajorAxis"
[1] "STARTing cell.. 254 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.05133 -0.00987 -0.1785 -0.14104 -0.22818 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 254"
[1] "ENDing cell.. 254 With feature... MajorAxis"
[1] "STARTing cell.. 269 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.00562 0.02046 0.04977 0.08314 0.13202 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 269"
[1] "ENDing cell.. 269 With feature... MajorAxis"
[1] "STARTing cell.. 119 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.375 -0.367 -0.317 -0.228 -0.164 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 119"
[1] "ENDing cell.. 119 With feature... MajorAxis"
[1] "STARTing cell.. 180 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.32 0.257 0.331 0.33 0.339 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 180"
[1] "ENDing cell.. 180 With feature... MajorAxis"
[1] "STARTing cell.. 151 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1035 0.011 0.0336 0.2498 0.1422 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 151"
[1] "ENDing cell.. 151 With feature... MajorAxis"
[1] "STARTing cell.. 40 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0336 -0.0479 -0.1737 -0.2792 -0.3004 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 40"
[1] "ENDing cell.. 40 With feature... MajorAxis"
[1] "STARTing cell.. 191 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0944 0.0931 0.2714 0.2797 0.3921 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 191"
[1] "ENDing cell.. 191 With feature... MajorAxis"
[1] "STARTing cell.. 108 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.1762 0.1114 0.0717 -0.0922 -0.2105 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 108"
[1] "ENDing cell.. 108 With feature... MajorAxis"
[1] "STARTing cell.. 198 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0381 0.1777 0.0185 0.1228 0.1232 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 198"
[1] "ENDing cell.. 198 With feature... MajorAxis"
[1] "STARTing cell.. 144 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.308 0.398 0.475 0.513 0.559 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 144"
[1] "ENDing cell.. 144 With feature... MajorAxis"
[1] "STARTing cell.. 170 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.04543 0.00541 -0.01941 -0.03704 -0.07757 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 170"
[1] "ENDing cell.. 170 With feature... MajorAxis"
[1] "STARTing cell.. 270 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0325 0.1568 0.2464 0.4533 0.5047 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 270"
[1] "ENDing cell.. 270 With feature... MajorAxis"
[1] "STARTing cell.. 41 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.00728 0.06246 0.12758 0.25289 0.28466 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 41"
[1] "ENDing cell.. 41 With feature... MajorAxis"
[1] "STARTing cell.. 154 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0132 0.1463 0.1188 0.255 0.3568 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 154"
[1] "ENDing cell.. 154 With feature... MajorAxis"
[1] "STARTing cell.. 90 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0811 0.1986 0.2788 0.3632 0.2075 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 90"
[1] "ENDing cell.. 90 With feature... MajorAxis"
[1] "STARTing cell.. 145 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.254 -0.222 -0.218 -0.196 -0.134 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 145"
[1] "ENDing cell.. 145 With feature... MajorAxis"
[1] "STARTing cell.. 271 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0354 0.0192 0.08 0.1457 0.1896 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 271"
[1] "ENDing cell.. 271 With feature... MajorAxis"
[1] "STARTing cell.. 183 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0412 0.0254 -0.0352 -0.0198 -0.0165 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 183"
[1] "ENDing cell.. 183 With feature... MajorAxis"
[1] "STARTing cell.. 147 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.183 0.151 0.161 0.186 0.213 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 147"
[1] "ENDing cell.. 147 With feature... MajorAxis"
[1] "STARTing cell.. 178 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.14317 -0.0935 -0.02371 0.00721 -0.02554 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 178"
[1] "ENDing cell.. 178 With feature... MajorAxis"
[1] "STARTing cell.. 272 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.229 0.308 0.269 0.423 0.276 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 272"
[1] "ENDing cell.. 272 With feature... MajorAxis"
[1] "STARTing cell.. 43 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.34 -0.337 -0.33 -0.277 -0.33 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 43"
[1] "ENDing cell.. 43 With feature... MajorAxis"
[1] "STARTing cell.. 99 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.00429 -0.00613 -0.02726 -0.11053 -0.22537 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 99"
[1] "ENDing cell.. 99 With feature... MajorAxis"
[1] "STARTing cell.. 155 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0267 -0.0385 -0.0782 -0.1108 -0.0337 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 155"
[1] "ENDing cell.. 155 With feature... MajorAxis"
[1] "STARTing cell.. 148 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0222 -0.0131 -0.1655 -0.1481 -0.1537 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 148"
[1] "ENDing cell.. 148 With feature... MajorAxis"
[1] "STARTing cell.. 215 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.2043 -0.1971 -0.1717 -0.1003 -0.0569 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 215"
[1] "ENDing cell.. 215 With feature... MajorAxis"
[1] "STARTing cell.. 149 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.15886 -0.01462 0.00552 0.04355 -0.00563 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 149"
[1] "ENDing cell.. 149 With feature... MajorAxis"
[1] "STARTing cell.. 89 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0805 0.0338 0.0109 0.0851 -0.0235 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 89"
[1] "ENDing cell.. 89 With feature... MajorAxis"
[1] "STARTing cell.. 156 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.01502 0.02155 0.06629 0.00643 0.12034 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 156"
[1] "ENDing cell.. 156 With feature... MajorAxis"
[1] "STARTing cell.. 150 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0416 0.0438 0.0536 0.0931 0.1575 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 150"
[1] "ENDing cell.. 150 With feature... MajorAxis"
[1] "STARTing cell.. 42 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0798 -0.0172 0.1215 0.2936 0.3452 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 42"
[1] "ENDing cell.. 42 With feature... MajorAxis"
[1] "STARTing cell.. 44 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1091 -0.0512 -0.0212 0.021 0.0706 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 44"
[1] "ENDing cell.. 44 With feature... MajorAxis"
[1] "STARTing cell.. 100 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.221 0.232 0.149 0.164 -0.119 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 100"
[1] "ENDing cell.. 100 With feature... MajorAxis"
[1] "STARTing cell.. 153 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.398 0.384 0.343 0.396 0.343 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 153"
[1] "ENDing cell.. 153 With feature... MajorAxis"
[1] "STARTing cell.. 47 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.021 0.0451 -0.0438 -0.113 -0.0826 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 47"
[1] "ENDing cell.. 47 With feature... MajorAxis"
[1] "STARTing cell.. 202 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.263 0.419 0.407 0.182 0.164 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 202"
[1] "ENDing cell.. 202 With feature... MajorAxis"
[1] "STARTing cell.. 51 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0976 -0.1527 -0.3406 -0.5071 -0.3477 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 51"
[1] "ENDing cell.. 51 With feature... MajorAxis"
[1] "STARTing cell.. 260 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0114 0.0799 0.1476 0.2156 0.2772 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 260"
[1] "ENDing cell.. 260 With feature... MajorAxis"
[1] "STARTing cell.. 217 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0944 0.1216 0.2625 0.2115 0.2928 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 217"
[1] "ENDing cell.. 217 With feature... MajorAxis"
[1] "STARTing cell.. 182 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.07088 -0.064 0.00915 -0.08182 0.01297 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 182"
[1] "ENDing cell.. 182 With feature... MajorAxis"
[1] "STARTing cell.. 184 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0032 0.0253 0.0737 0.1195 0.1738 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 184"
[1] "ENDing cell.. 184 With feature... MajorAxis"
[1] "STARTing cell.. 45 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.317 -0.308 -0.316 -0.31 -0.326 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 45"
[1] "ENDing cell.. 45 With feature... MajorAxis"
[1] "STARTing cell.. 241 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.378 0.374 0.343 0.286 0.218 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 241"
[1] "ENDing cell.. 241 With feature... MajorAxis"
[1] "STARTing cell.. 82 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.194 0.196 0.256 0.303 0.234 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 82"
[1] "ENDing cell.. 82 With feature... MajorAxis"
[1] "STARTing cell.. 261 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0621 0.0322 0.2171 0.0456 0.1751 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 261"
[1] "ENDing cell.. 261 With feature... MajorAxis"
[1] "STARTing cell.. 262 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.189 -0.234 -0.198 -0.266 -0.149 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 262"
[1] "ENDing cell.. 262 With feature... MajorAxis"
[1] "STARTing cell.. 216 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.243 0.0811 0.1458 0.1532 0.2009 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 216"
[1] "ENDing cell.. 216 With feature... MajorAxis"
[1] "STARTing cell.. 66 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0336 -0.0274 -0.193 0.1058 0.0368 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 66"
[1] "ENDing cell.. 66 With feature... MajorAxis"
[1] "STARTing cell.. 128 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.154 0.193 0.193 0.233 0.142 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 128"
[1] "ENDing cell.. 128 With feature... MajorAxis"
[1] "STARTing cell.. 50 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1234 -0.0254 0.0344 -0.11 0.1038 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 50"
[1] "ENDing cell.. 50 With feature... MajorAxis"
[1] "STARTing cell.. 5 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0156 0.0254 -0.0231 -0.0603 -0.0711 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 5"
[1] "ENDing cell.. 5 With feature... MajorAxis"
[1] "STARTing cell.. 26 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0729 0.0367 -0.0729 -0.0967 -0.018 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 26"
[1] "ENDing cell.. 26 With feature... MajorAxis"
[1] "STARTing cell.. 129 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.354 -0.333 -0.277 -0.189 -0.119 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 129"
[1] "ENDing cell.. 129 With feature... MajorAxis"
[1] "STARTing cell.. 67 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.1073 0.1121 0.1482 0.0401 -0.1691 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 67"
[1] "ENDing cell.. 67 With feature... MajorAxis"
[1] "STARTing cell.. 247 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.138 -0.138 -0.128 -0.226 -0.327 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 247"
[1] "ENDing cell.. 247 With feature... MajorAxis"
[1] "STARTing cell.. 134 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.193 0.294 0.371 0.47 0.514 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 134"
[1] "ENDing cell.. 134 With feature... MajorAxis"
[1] "STARTing cell.. 93 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.367 0.447 0.49 0.457 0.409 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 93"
[1] "ENDing cell.. 93 With feature... MajorAxis"
[1] "STARTing cell.. 248 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.3111 -0.2802 -0.1805 -0.2181 0.0681 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 248"
[1] "ENDing cell.. 248 With feature... MajorAxis"
[1] "STARTing cell.. 157 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.275 -0.193 -0.271 -0.118 -0.128 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 157"
[1] "ENDing cell.. 157 With feature... MajorAxis"
[1] "STARTing cell.. 46 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.229 0.38 0.45 0.495 0.544 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 46"
[1] "ENDing cell.. 46 With feature... MajorAxis"
[1] "STARTing cell.. 242 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.00654 0.07015 0.10976 0.20828 0.33706 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 242"
[1] "ENDing cell.. 242 With feature... MajorAxis"
[1] "STARTing cell.. 159 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0374 -0.115 -0.1716 -0.2854 -0.3961 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 159"
[1] "ENDing cell.. 159 With feature... MajorAxis"
[1] "STARTing cell.. 186 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0933 0.0863 -0.0498 -0.2009 0.0594 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 186"
[1] "ENDing cell.. 186 With feature... MajorAxis"
[1] "STARTing cell.. 228 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.214 -0.248 -0.262 -0.31 -0.302 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 228"
[1] "ENDing cell.. 228 With feature... MajorAxis"
[1] "STARTing cell.. 160 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.456 -0.465 -0.481 -0.467 -0.355 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 160"
[1] "ENDing cell.. 160 With feature... MajorAxis"
[1] "STARTing cell.. 279 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1883 -0.0689 0.0383 0.1365 0.1605 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 279"
[1] "ENDing cell.. 279 With feature... MajorAxis"
[1] "STARTing cell.. 53 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1 -0.0154 -0.0802 -0.1854 -0.0326 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 53"
[1] "ENDing cell.. 53 With feature... MajorAxis"
[1] "STARTing cell.. 94 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0435 -0.0365 -0.095 -0.2349 -0.2912 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 94"
[1] "ENDing cell.. 94 With feature... MajorAxis"
[1] "STARTing cell.. 121 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0688 0.1059 -0.1352 -0.1695 -0.1742 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 121"
[1] "ENDing cell.. 121 With feature... MajorAxis"
[1] "STARTing cell.. 213 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0884 0.1039 0.186 0.2521 0.4238 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 213"
[1] "ENDing cell.. 213 With feature... MajorAxis"
[1] "STARTing cell.. 109 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.04309 0.04697 0.12345 0.05707 -0.00693 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 109"
[1] "ENDing cell.. 109 With feature... MajorAxis"
[1] "STARTing cell.. 110 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.218 0.199 0.227 0.252 0.351 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 110"
[1] "ENDing cell.. 110 With feature... MajorAxis"
[1] "STARTing cell.. 101 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0991 0.0354 0.0225 -0.0674 -0.1186 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 101"
[1] "ENDing cell.. 101 With feature... MajorAxis"
[1] "STARTing cell.. 187 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0394 -0.1292 -0.2285 -0.2526 -0.259 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 187"
[1] "ENDing cell.. 187 With feature... MajorAxis"
[1] "STARTing cell.. 263 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.164 0.172 0.256 0.176 0.161 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 263"
[1] "ENDing cell.. 263 With feature... MajorAxis"
[1] "STARTing cell.. 218 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.194 -0.264 -0.302 -0.19 -0.191 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 218"
[1] "ENDing cell.. 218 With feature... MajorAxis"
[1] "STARTing cell.. 19 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.254 -0.217 -0.266 -0.282 -0.209 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 19"
[1] "ENDing cell.. 19 With feature... MajorAxis"
[1] "STARTing cell.. 20 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.1599 0.0352 -0.0344 -0.1988 -0.1405 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 20"
[1] "ENDing cell.. 20 With feature... MajorAxis"
[1] "STARTing cell.. 224 With feature... MajorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.2808 0.0244 -0.1627 -0.2353 -0.3465 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 224"
[1] "ENDing cell.. 224 With feature... MajorAxis"
[1] "STARTing cell.. 219 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0965 -0.1963 -0.2129 -0.1832 -0.0291 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 219"
[1] "ENDing cell.. 219 With feature... MinorAxis"
[1] "STARTing cell.. 264 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.3151 0.2165 0.2909 0.0549 0.1456 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 264"
[1] "ENDing cell.. 264 With feature... MinorAxis"
[1] "STARTing cell.. 136 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.214 -0.211 -0.211 -0.221 -0.208 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 136"
[1] "ENDing cell.. 136 With feature... MinorAxis"
[1] "STARTing cell.. 54 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1417 -0.164 -0.0196 -0.0592 -0.1609 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 54"
[1] "ENDing cell.. 54 With feature... MinorAxis"
[1] "STARTing cell.. 69 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.154 -0.141 -0.18 -0.194 -0.148 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 69"
[1] "ENDing cell.. 69 With feature... MinorAxis"
[1] "STARTing cell.. 111 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.15534 -0.09295 -0.09487 -0.07299 -0.00511 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 111"
[1] "ENDing cell.. 111 With feature... MinorAxis"
[1] "STARTing cell.. 189 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.314 -0.252 -0.186 -0.213 -0.168 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 189"
[1] "ENDing cell.. 189 With feature... MinorAxis"
[1] "STARTing cell.. 171 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0394 -0.0194 -0.0722 0.1243 0.1443 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 171"
[1] "ENDing cell.. 171 With feature... MinorAxis"
[1] "STARTing cell.. 231 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.268 -0.251 -0.157 -0.15 -0.172 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 231"
[1] "ENDing cell.. 231 With feature... MinorAxis"
[1] "STARTing cell.. 205 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0677 -0.0708 0.0442 0.1342 0.0041 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 205"
[1] "ENDing cell.. 205 With feature... MinorAxis"
[1] "STARTing cell.. 244 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.245 0.206 0.177 0.111 0.101 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 244"
[1] "ENDing cell.. 244 With feature... MinorAxis"
[1] "STARTing cell.. 1 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.131 -0.197 -0.316 -0.411 -0.447 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 1"
[1] "ENDing cell.. 1 With feature... MinorAxis"
[1] "STARTing cell.. 36 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.192 0.226 0.28 0.363 0.421 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 36"
[1] "ENDing cell.. 36 With feature... MinorAxis"
[1] "STARTing cell.. 7 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.246 0.316 0.364 0.417 0.392 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 7"
[1] "ENDing cell.. 7 With feature... MinorAxis"
[1] "STARTing cell.. 102 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.406 -0.375 -0.367 -0.342 -0.299 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 102"
[1] "ENDing cell.. 102 With feature... MinorAxis"
[1] "STARTing cell.. 22 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.277 0.25 0.29 0.291 0.319 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 22"
[1] "ENDing cell.. 22 With feature... MinorAxis"
[1] "STARTing cell.. 188 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.301 0.266 0.256 0.304 0.334 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 188"
[1] "ENDing cell.. 188 With feature... MinorAxis"
[1] "STARTing cell.. 55 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1804 -0.1173 -0.0611 0.037 0.1434 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 55"
[1] "ENDing cell.. 55 With feature... MinorAxis"
[1] "STARTing cell.. 243 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.1675 0.1844 0.126 0.0857 0.0194 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 243"
[1] "ENDing cell.. 243 With feature... MinorAxis"
[1] "STARTing cell.. 123 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.2576 -0.0514 -0.1842 -0.1702 -0.0485 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 123"
[1] "ENDing cell.. 123 With feature... MinorAxis"
[1] "STARTing cell.. 21 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.426 -0.495 -0.562 -0.615 -0.644 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 21"
[1] "ENDing cell.. 21 With feature... MinorAxis"
[1] "STARTing cell.. 163 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.154 0.385 0.227 0.345 0.158 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 163"
[1] "ENDing cell.. 163 With feature... MinorAxis"
[1] "STARTing cell.. 112 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0515 0.0547 0.1074 0.2463 0.3299 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 112"
[1] "ENDing cell.. 112 With feature... MinorAxis"
[1] "STARTing cell.. 33 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0572 -0.1329 -0.1748 -0.2075 -0.2135 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 33"
[1] "ENDing cell.. 33 With feature... MinorAxis"
[1] "STARTing cell.. 172 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0532 0.0391 0.0656 0.0931 0.0265 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 172"
[1] "ENDing cell.. 172 With feature... MinorAxis"
[1] "STARTing cell.. 95 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.21 0.233 0.165 0.263 0.317 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 95"
[1] "ENDing cell.. 95 With feature... MinorAxis"
[1] "STARTing cell.. 30 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.105 0.1508 0.1503 -0.0439 -0.089 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 30"
[1] "ENDing cell.. 30 With feature... MinorAxis"
[1] "STARTing cell.. 203 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.332 0.37 0.379 0.504 0.436 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 203"
[1] "ENDing cell.. 203 With feature... MinorAxis"
[1] "STARTing cell.. 274 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.1526 0.0845 0.0168 -0.0198 -0.1039 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 274"
[1] "ENDing cell.. 274 With feature... MinorAxis"
[1] "STARTing cell.. 131 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0608 -0.0398 -0.1738 0.3052 -0.1412 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 131"
[1] "ENDing cell.. 131 With feature... MinorAxis"
[1] "STARTing cell.. 68 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.147 0.141 0.158 0.182 0.253 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 68"
[1] "ENDing cell.. 68 With feature... MinorAxis"
[1] "STARTing cell.. 71 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.371 -0.43 -0.43 -0.438 -0.421 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 71"
[1] "ENDing cell.. 71 With feature... MinorAxis"
[1] "STARTing cell.. 135 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.257 -0.288 -0.305 -0.336 -0.398 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 135"
[1] "ENDing cell.. 135 With feature... MinorAxis"
[1] "STARTing cell.. 84 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.04503 0.00784 -0.03961 -0.10924 -0.18375 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 84"
[1] "ENDing cell.. 84 With feature... MinorAxis"
[1] "STARTing cell.. 206 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1953 -0.1548 -0.0321 0.0822 0.0349 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 206"
[1] "ENDing cell.. 206 With feature... MinorAxis"
[1] "STARTing cell.. 255 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.274 -0.349 -0.353 -0.301 -0.341 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 255"
[1] "ENDing cell.. 255 With feature... MinorAxis"
[1] "STARTing cell.. 64 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.148 -0.124 -0.196 -0.133 -0.182 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 64"
[1] "ENDing cell.. 64 With feature... MinorAxis"
[1] "STARTing cell.. 9 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0743 0.0809 0.036 0.0534 0.0181 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 9"
[1] "ENDing cell.. 9 With feature... MinorAxis"
[1] "STARTing cell.. 122 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.395 -0.403 -0.405 -0.413 -0.376 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 122"
[1] "ENDing cell.. 122 With feature... MinorAxis"
[1] "STARTing cell.. 23 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0494 0.1608 0.2278 0.2577 0.3084 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 23"
[1] "ENDing cell.. 23 With feature... MinorAxis"
[1] "STARTing cell.. 162 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.206 0.393 0.325 0.306 0.426 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 162"
[1] "ENDing cell.. 162 With feature... MinorAxis"
[1] "STARTing cell.. 229 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.219 0.193 0.205 0.19 0.118 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 229"
[1] "ENDing cell.. 229 With feature... MinorAxis"
[1] "STARTing cell.. 57 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.17 0.258 0.14 0.171 0.108 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 57"
[1] "ENDing cell.. 57 With feature... MinorAxis"
[1] "STARTing cell.. 249 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.1779 0.0753 -0.1189 -0.057 -0.1057 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 249"
[1] "ENDing cell.. 249 With feature... MinorAxis"
[1] "STARTing cell.. 125 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0642 0.0756 0.151 0.1791 0.2074 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 125"
[1] "ENDing cell.. 125 With feature... MinorAxis"
[1] "STARTing cell.. 8 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.322 -0.2339 -0.1462 -0.1862 -0.0736 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 8"
[1] "ENDing cell.. 8 With feature... MinorAxis"
[1] "STARTing cell.. 165 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0497 -0.0163 0.0355 0.0638 0.0507 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 165"
[1] "ENDing cell.. 165 With feature... MinorAxis"
[1] "STARTing cell.. 83 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.00951 -0.08875 -0.11337 -0.14158 -0.19699 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 83"
[1] "ENDing cell.. 83 With feature... MinorAxis"
[1] "STARTing cell.. 113 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.155 0.0111 -0.1285 -0.2346 -0.0105 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 113"
[1] "ENDing cell.. 113 With feature... MinorAxis"
[1] "STARTing cell.. 220 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.188 0.214 0.258 0.292 0.294 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 220"
[1] "ENDing cell.. 220 With feature... MinorAxis"
[1] "STARTing cell.. 174 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.191 0.246 0.295 0.326 0.336 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 174"
[1] "ENDing cell.. 174 With feature... MinorAxis"
[1] "STARTing cell.. 56 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.284 0.312 0.333 0.324 0.232 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 56"
[1] "ENDing cell.. 56 With feature... MinorAxis"
[1] "STARTing cell.. 173 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.19 0.218 0.209 0.247 0.229 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 173"
[1] "ENDing cell.. 173 With feature... MinorAxis"
[1] "STARTing cell.. 232 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.272 -0.416 -0.363 -0.39 -0.325 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 232"
[1] "ENDing cell.. 232 With feature... MinorAxis"
[1] "STARTing cell.. 37 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.244 0.226 0.118 0.253 0.289 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 37"
[1] "ENDing cell.. 37 With feature... MinorAxis"
[1] "STARTing cell.. 86 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.3105 0.3185 0.2841 0.1652 0.0586 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 86"
[1] "ENDing cell.. 86 With feature... MinorAxis"
[1] "STARTing cell.. 103 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.599 -0.563 -0.51 -0.464 -0.42 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 103"
[1] "ENDing cell.. 103 With feature... MinorAxis"
[1] "STARTing cell.. 208 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.325 0.31 0.268 0.257 0.159 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 208"
[1] "ENDing cell.. 208 With feature... MinorAxis"
[1] "STARTing cell.. 190 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0477 0.0437 0.1443 0.1911 0.2049 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 190"
[1] "ENDing cell.. 190 With feature... MinorAxis"
[1] "STARTing cell.. 4 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.158 -0.235 -0.319 -0.357 -0.414 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 4"
[1] "ENDing cell.. 4 With feature... MinorAxis"
[1] "STARTing cell.. 238 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.132 -0.197 -0.171 -0.144 -0.288 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 238"
[1] "ENDing cell.. 238 With feature... MinorAxis"
[1] "STARTing cell.. 11 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0813 0.1352 0.0224 0.064 0.036 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 11"
[1] "ENDing cell.. 11 With feature... MinorAxis"
[1] "STARTing cell.. 29 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1503 -0.1543 -0.1138 0.0222 0.0817 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 29"
[1] "ENDing cell.. 29 With feature... MinorAxis"
[1] "STARTing cell.. 59 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0481 -0.0964 -0.1566 -0.2495 -0.2474 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 59"
[1] "ENDing cell.. 59 With feature... MinorAxis"
[1] "STARTing cell.. 96 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.3499 0.4656 0.221 0.0556 0.0229 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 96"
[1] "ENDing cell.. 96 With feature... MinorAxis"
[1] "STARTing cell.. 204 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0744 0.0698 0.0194 0.122 0.152 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 204"
[1] "ENDing cell.. 204 With feature... MinorAxis"
[1] "STARTing cell.. 275 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.149 -0.15 -0.226 -0.274 -0.343 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 275"
[1] "ENDing cell.. 275 With feature... MinorAxis"
[1] "STARTing cell.. 130 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.2245 0.0849 0.0272 0.2112 0.1441 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 130"
[1] "ENDing cell.. 130 With feature... MinorAxis"
[1] "STARTing cell.. 137 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0449 0.0553 0.1775 0.3048 0.3238 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 137"
[1] "ENDing cell.. 137 With feature... MinorAxis"
[1] "STARTing cell.. 140 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.14333 -0.06001 -0.08709 -0.0631 -0.00333 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 140"
[1] "ENDing cell.. 140 With feature... MinorAxis"
[1] "STARTing cell.. 226 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.195 -0.205 -0.168 -0.228 -0.192 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 226"
[1] "ENDing cell.. 226 With feature... MinorAxis"
[1] "STARTing cell.. 74 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1947 -0.0757 -0.2706 -0.0723 -0.1036 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 74"
[1] "ENDing cell.. 74 With feature... MinorAxis"
[1] "STARTing cell.. 256 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0541 -0.1495 -0.1788 -0.2521 -0.2144 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 256"
[1] "ENDing cell.. 256 With feature... MinorAxis"
[1] "STARTing cell.. 65 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.01771 0.00793 0.02817 -0.11431 -0.25981 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 65"
[1] "ENDing cell.. 65 With feature... MinorAxis"
[1] "STARTing cell.. 87 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.423 0.568 0.586 0.452 0.373 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 87"
[1] "ENDing cell.. 87 With feature... MinorAxis"
[1] "STARTing cell.. 124 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0495 -0.0442 -0.0346 -0.0444 -0.0463 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 124"
[1] "ENDing cell.. 124 With feature... MinorAxis"
[1] "STARTing cell.. 210 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0198 -0.2 -0.2518 -0.2991 -0.3893 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 210"
[1] "ENDing cell.. 210 With feature... MinorAxis"
[1] "STARTing cell.. 164 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.01668 0.01985 0.00875 0.07201 0.02963 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 164"
[1] "ENDing cell.. 164 With feature... MinorAxis"
[1] "STARTing cell.. 230 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.05924 0.00419 -0.07965 -0.1296 -0.19209 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 230"
[1] "ENDing cell.. 230 With feature... MinorAxis"
[1] "STARTing cell.. 13 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.181 0.104 0.32 0.272 0.334 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 13"
[1] "ENDing cell.. 13 With feature... MinorAxis"
[1] "STARTing cell.. 250 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0338 -0.1161 -0.1058 -0.0491 -0.1005 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 250"
[1] "ENDing cell.. 250 With feature... MinorAxis"
[1] "STARTing cell.. 10 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.26 -0.277 -0.248 -0.206 -0.179 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 10"
[1] "ENDing cell.. 10 With feature... MinorAxis"
[1] "STARTing cell.. 85 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0249 0.1117 0.1336 0.2299 0.2699 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 85"
[1] "ENDing cell.. 85 With feature... MinorAxis"
[1] "STARTing cell.. 61 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0397 -0.1258 -0.0343 -0.1654 -0.225 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 61"
[1] "ENDing cell.. 61 With feature... MinorAxis"
[1] "STARTing cell.. 221 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.531 -0.546 -0.597 -0.624 -0.57 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 221"
[1] "ENDing cell.. 221 With feature... MinorAxis"
[1] "STARTing cell.. 265 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0254 0.0759 0.1036 0.0977 0.0576 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 265"
[1] "ENDing cell.. 265 With feature... MinorAxis"
[1] "STARTing cell.. 58 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.396 -0.485 -0.56 -0.391 -0.412 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 58"
[1] "ENDing cell.. 58 With feature... MinorAxis"
[1] "STARTing cell.. 114 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.117 -0.162 -0.295 -0.345 -0.434 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 114"
[1] "ENDing cell.. 114 With feature... MinorAxis"
[1] "STARTing cell.. 233 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0376 0.1137 0.279 0.3841 0.5337 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 233"
[1] "ENDing cell.. 233 With feature... MinorAxis"
[1] "STARTing cell.. 246 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0127 0.0779 0.059 0.1373 0.0671 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 246"
[1] "ENDing cell.. 246 With feature... MinorAxis"
[1] "STARTing cell.. 104 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.225 -0.223 -0.199 -0.153 -0.111 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 104"
[1] "ENDing cell.. 104 With feature... MinorAxis"
[1] "STARTing cell.. 76 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.325 0.404 0.435 0.499 0.482 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 76"
[1] "ENDing cell.. 76 With feature... MinorAxis"
[1] "STARTing cell.. 239 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0102 0.1142 0.0862 -0.0494 -0.1478 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 239"
[1] "ENDing cell.. 239 With feature... MinorAxis"
[1] "STARTing cell.. 88 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1968 -0.1634 -0.2392 -0.2156 -0.0567 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 88"
[1] "ENDing cell.. 88 With feature... MinorAxis"
[1] "STARTing cell.. 211 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.29 -0.37 -0.431 -0.4 -0.443 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 211"
[1] "ENDing cell.. 211 With feature... MinorAxis"
[1] "STARTing cell.. 24 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.374 -0.37 -0.415 -0.417 -0.479 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 24"
[1] "ENDing cell.. 24 With feature... MinorAxis"
[1] "STARTing cell.. 276 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.2282 0.2219 0.1488 0.0441 -0.0197 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 276"
[1] "ENDing cell.. 276 With feature... MinorAxis"
[1] "STARTing cell.. 115 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.23664 -0.23032 -0.14667 0.0222 0.00188 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 115"
[1] "ENDing cell.. 115 With feature... MinorAxis"
[1] "STARTing cell.. 132 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.24 0.196 0.241 0.27 0.369 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 132"
[1] "ENDing cell.. 132 With feature... MinorAxis"
[1] "STARTing cell.. 138 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0333 0.10236 -0.06574 -0.00275 -0.06512 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 138"
[1] "ENDing cell.. 138 With feature... MinorAxis"
[1] "STARTing cell.. 227 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.018 -0.0594 -0.1101 -0.1322 -0.2059 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 227"
[1] "ENDing cell.. 227 With feature... MinorAxis"
[1] "STARTing cell.. 257 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.222 -0.1836 -0.2201 -0.1155 -0.0757 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 257"
[1] "ENDing cell.. 257 With feature... MinorAxis"
[1] "STARTing cell.. 133 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.155 -0.18 -0.411 -0.101 -0.25 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 133"
[1] "ENDing cell.. 133 With feature... MinorAxis"
[1] "STARTing cell.. 126 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.3065 -0.2567 -0.1492 -0.0431 0.0261 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 126"
[1] "ENDing cell.. 126 With feature... MinorAxis"
[1] "STARTing cell.. 78 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.11 -0.164 -0.196 -0.186 -0.252 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 78"
[1] "ENDing cell.. 78 With feature... MinorAxis"
[1] "STARTing cell.. 166 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.24 0.314 0.336 0.409 0.449 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 166"
[1] "ENDing cell.. 166 With feature... MinorAxis"
[1] "STARTing cell.. 195 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.101 0.177 0.219 0.157 0.177 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 195"
[1] "ENDing cell.. 195 With feature... MinorAxis"
[1] "STARTing cell.. 251 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1063 -0.1911 -0.1221 -0.0178 0.0496 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 251"
[1] "ENDing cell.. 251 With feature... MinorAxis"
[1] "STARTing cell.. 12 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.162 0.214 0.266 0.309 0.343 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 12"
[1] "ENDing cell.. 12 With feature... MinorAxis"
[1] "STARTing cell.. 222 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0734 0.1108 0.1488 0.2624 0.1826 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 222"
[1] "ENDing cell.. 222 With feature... MinorAxis"
[1] "STARTing cell.. 60 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.192 0.164 0.208 0.125 0.123 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 60"
[1] "ENDing cell.. 60 With feature... MinorAxis"
[1] "STARTing cell.. 63 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0372 -0.061 -0.0853 -0.1125 -0.049 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 63"
[1] "ENDing cell.. 63 With feature... MinorAxis"
[1] "STARTing cell.. 175 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0722 -0.1408 -0.186 -0.1124 -0.1906 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 175"
[1] "ENDing cell.. 175 With feature... MinorAxis"
[1] "STARTing cell.. 234 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.339 -0.421 -0.447 -0.46 -0.521 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 234"
[1] "ENDing cell.. 234 With feature... MinorAxis"
[1] "STARTing cell.. 192 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1103 -0.0949 -0.1655 -0.1825 -0.2924 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 192"
[1] "ENDing cell.. 192 With feature... MinorAxis"
[1] "STARTing cell.. 240 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.2066 -0.187 -0.2416 0.173 0.0312 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 240"
[1] "ENDing cell.. 240 With feature... MinorAxis"
[1] "STARTing cell.. 80 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1007 -0.0592 -0.1139 -0.1772 -0.1861 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 80"
[1] "ENDing cell.. 80 With feature... MinorAxis"
[1] "STARTing cell.. 97 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.2111 0.2249 0.1543 0.187 0.0975 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 97"
[1] "ENDing cell.. 97 With feature... MinorAxis"
[1] "STARTing cell.. 207 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.184 0.185 0.196 0.215 0.223 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 207"
[1] "ENDing cell.. 207 With feature... MinorAxis"
[1] "STARTing cell.. 277 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0746 -0.1557 -0.1337 -0.2225 -0.2441 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 277"
[1] "ENDing cell.. 277 With feature... MinorAxis"
[1] "STARTing cell.. 73 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1589 -0.0995 -0.0551 0.0491 0.1096 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 73"
[1] "ENDing cell.. 73 With feature... MinorAxis"
[1] "STARTing cell.. 139 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.1391 0.134 0.0914 0.0323 0.0566 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 139"
[1] "ENDing cell.. 139 With feature... MinorAxis"
[1] "STARTing cell.. 258 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.11666 -0.09528 -0.06043 -0.0178 -0.00566 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 258"
[1] "ENDing cell.. 258 With feature... MinorAxis"
[1] "STARTing cell.. 179 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.233 -0.275 -0.408 -0.437 -0.491 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 179"
[1] "ENDing cell.. 179 With feature... MinorAxis"
[1] "STARTing cell.. 167 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.2153 -0.1101 -0.0833 -0.129 -0.0563 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 167"
[1] "ENDing cell.. 167 With feature... MinorAxis"
[1] "STARTing cell.. 252 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0946 -0.118 -0.161 -0.2867 -0.4616 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 252"
[1] "ENDing cell.. 252 With feature... MinorAxis"
[1] "STARTing cell.. 81 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.069 -0.15 -0.167 -0.233 -0.163 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 81"
[1] "ENDing cell.. 81 With feature... MinorAxis"
[1] "STARTing cell.. 14 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.34 0.332 0.289 0.255 0.215 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 14"
[1] "ENDing cell.. 14 With feature... MinorAxis"
[1] "STARTing cell.. 199 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.02509 0.03112 -0.00906 -0.00185 -0.18621 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 199"
[1] "ENDing cell.. 199 With feature... MinorAxis"
[1] "STARTing cell.. 266 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0729 0.0285 -0.0594 -0.1321 -0.1715 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 266"
[1] "ENDing cell.. 266 With feature... MinorAxis"
[1] "STARTing cell.. 116 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.182 0.243 0.248 0.334 0.396 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 116"
[1] "ENDing cell.. 116 With feature... MinorAxis"
[1] "STARTing cell.. 176 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0158 -0.0345 0.0191 0.0509 -0.0644 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 176"
[1] "ENDing cell.. 176 With feature... MinorAxis"
[1] "STARTing cell.. 235 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1317 -0.1089 -0.087 -0.0731 -0.0967 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 235"
[1] "ENDing cell.. 235 With feature... MinorAxis"
[1] "STARTing cell.. 38 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0357 0.0503 0.0844 0.0254 -0.0113 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 38"
[1] "ENDing cell.. 38 With feature... MinorAxis"
[1] "STARTing cell.. 105 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0708 -0.0161 0.0284 0.0293 0.0297 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 105"
[1] "ENDing cell.. 105 With feature... MinorAxis"
[1] "STARTing cell.. 193 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0785 0.066 0.1615 0.2673 0.3107 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 193"
[1] "ENDing cell.. 193 With feature... MinorAxis"
[1] "STARTing cell.. 181 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.497 0.55 0.471 0.505 0.433 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 181"
[1] "ENDing cell.. 181 With feature... MinorAxis"
[1] "STARTing cell.. 28 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.642 -0.659 -0.642 -0.639 -0.571 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 28"
[1] "ENDing cell.. 28 With feature... MinorAxis"
[1] "STARTing cell.. 98 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1234 -0.0982 -0.0647 0.0594 0.0377 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 98"
[1] "ENDing cell.. 98 With feature... MinorAxis"
[1] "STARTing cell.. 200 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1322 -0.0802 0.0443 0.0831 0.1618 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 200"
[1] "ENDing cell.. 200 With feature... MinorAxis"
[1] "STARTing cell.. 209 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.029 -0.0438 0.0467 0.0673 0.2172 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 209"
[1] "ENDing cell.. 209 With feature... MinorAxis"
[1] "STARTing cell.. 278 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0665 0.0103 -0.013 -0.0667 -0.0943 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 278"
[1] "ENDing cell.. 278 With feature... MinorAxis"
[1] "STARTing cell.. 75 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0295 0.0501 0.0451 0.071 0.0795 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 75"
[1] "ENDing cell.. 75 With feature... MinorAxis"
[1] "STARTing cell.. 141 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0313 -0.06 -0.1025 -0.2233 -0.1577 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 141"
[1] "ENDing cell.. 141 With feature... MinorAxis"
[1] "STARTing cell.. 259 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0121 0.1082 0.1433 0.1731 0.2301 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 259"
[1] "ENDing cell.. 259 With feature... MinorAxis"
[1] "STARTing cell.. 16 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0107 -0.0238 -0.0888 -0.1272 -0.0782 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 16"
[1] "ENDing cell.. 16 With feature... MinorAxis"
[1] "STARTing cell.. 267 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.12247 0.05848 -0.00518 -0.11507 -0.19087 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 267"
[1] "ENDing cell.. 267 With feature... MinorAxis"
[1] "STARTing cell.. 201 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.128 0.237 0.235 0.302 0.297 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 201"
[1] "ENDing cell.. 201 With feature... MinorAxis"
[1] "STARTing cell.. 117 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.259 -0.261 -0.253 -0.228 -0.29 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 117"
[1] "ENDing cell.. 117 With feature... MinorAxis"
[1] "STARTing cell.. 177 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.214 0.218 0.19 0.229 0.27 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 177"
[1] "ENDing cell.. 177 With feature... MinorAxis"
[1] "STARTing cell.. 15 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.042 0.0633 0.1185 0.1567 0.3942 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 15"
[1] "ENDing cell.. 15 With feature... MinorAxis"
[1] "STARTing cell.. 106 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0913 0.0892 0.1325 0.1759 0.2408 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 106"
[1] "ENDing cell.. 106 With feature... MinorAxis"
[1] "STARTing cell.. 194 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.24 0.199 0.219 0.257 0.16 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 194"
[1] "ENDing cell.. 194 With feature... MinorAxis"
[1] "STARTing cell.. 31 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.167 0.31 0.367 0.365 0.363 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 31"
[1] "ENDing cell.. 31 With feature... MinorAxis"
[1] "STARTing cell.. 77 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.516 -0.609 -0.604 -0.59 -0.707 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 77"
[1] "ENDing cell.. 77 With feature... MinorAxis"
[1] "STARTing cell.. 91 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0588 -0.0558 0.0395 -0.06 0.0873 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 91"
[1] "ENDing cell.. 91 With feature... MinorAxis"
[1] "STARTing cell.. 142 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.159 -0.188 -0.27 -0.249 -0.18 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 142"
[1] "ENDing cell.. 142 With feature... MinorAxis"
[1] "STARTing cell.. 17 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.13722 -0.04163 0.07622 0.00663 -0.06872 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 17"
[1] "ENDing cell.. 17 With feature... MinorAxis"
[1] "STARTing cell.. 62 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1504 -0.1145 -0.0786 -0.0592 0.0346 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 62"
[1] "ENDing cell.. 62 With feature... MinorAxis"
[1] "STARTing cell.. 168 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.292 0.274 0.233 0.259 0.252 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 168"
[1] "ENDing cell.. 168 With feature... MinorAxis"
[1] "STARTing cell.. 127 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0979 0.2158 0.0986 0.2085 0.1693 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 127"
[1] "ENDing cell.. 127 With feature... MinorAxis"
[1] "STARTing cell.. 253 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.374 0.417 0.35 0.322 0.168 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 253"
[1] "ENDing cell.. 253 With feature... MinorAxis"
[1] "STARTing cell.. 118 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.341 -0.315 -0.357 -0.37 -0.386 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 118"
[1] "ENDing cell.. 118 With feature... MinorAxis"
[1] "STARTing cell.. 39 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0541 0.0702 0.0936 0.144 0.0992 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 39"
[1] "ENDing cell.. 39 With feature... MinorAxis"
[1] "STARTing cell.. 107 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.111 0.145 0.207 0.267 0.372 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 107"
[1] "ENDing cell.. 107 With feature... MinorAxis"
[1] "STARTing cell.. 196 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.03251 0.00715 -0.16425 -0.09669 -0.19838 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 196"
[1] "ENDing cell.. 196 With feature... MinorAxis"
[1] "STARTing cell.. 212 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1211 -0.1232 -0.1182 -0.0752 -0.0209 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 212"
[1] "ENDing cell.. 212 With feature... MinorAxis"
[1] "STARTing cell.. 79 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0119 0.0431 0.1247 0.1493 0.1829 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 79"
[1] "ENDing cell.. 79 With feature... MinorAxis"
[1] "STARTing cell.. 143 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1242 -0.1204 -0.1277 -0.0748 -0.109 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 143"
[1] "ENDing cell.. 143 With feature... MinorAxis"
[1] "STARTing cell.. 92 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0358 -0.0403 -0.0567 -0.0444 -0.0746 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 92"
[1] "ENDing cell.. 92 With feature... MinorAxis"
[1] "STARTing cell.. 169 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.216 0.277 0.34 0.457 0.498 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 169"
[1] "ENDing cell.. 169 With feature... MinorAxis"
[1] "STARTing cell.. 254 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.10881 -0.13667 -0.04498 0.00409 -0.14584 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 254"
[1] "ENDing cell.. 254 With feature... MinorAxis"
[1] "STARTing cell.. 269 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.2096 -0.1751 -0.1415 -0.0927 -0.0876 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 269"
[1] "ENDing cell.. 269 With feature... MinorAxis"
[1] "STARTing cell.. 119 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.423 -0.445 -0.442 -0.449 -0.325 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 119"
[1] "ENDing cell.. 119 With feature... MinorAxis"
[1] "STARTing cell.. 180 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0044 0.0805 0.2368 0.1883 0.256 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 180"
[1] "ENDing cell.. 180 With feature... MinorAxis"
[1] "STARTing cell.. 151 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.25 0.247 0.27 0.286 0.453 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 151"
[1] "ENDing cell.. 151 With feature... MinorAxis"
[1] "STARTing cell.. 40 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0302 0.0272 0.121 0.2594 0.3107 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 40"
[1] "ENDing cell.. 40 With feature... MinorAxis"
[1] "STARTing cell.. 191 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0446 0.0924 0.208 0.1875 0.1964 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 191"
[1] "ENDing cell.. 191 With feature... MinorAxis"
[1] "STARTing cell.. 108 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1093 -0.0723 -0.0579 -0.0562 -0.0019 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 108"
[1] "ENDing cell.. 108 With feature... MinorAxis"
[1] "STARTing cell.. 198 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0242 0.053 -0.1942 -0.0507 -0.1018 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 198"
[1] "ENDing cell.. 198 With feature... MinorAxis"
[1] "STARTing cell.. 144 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.199 0.167 0.247 0.227 0.281 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 144"
[1] "ENDing cell.. 144 With feature... MinorAxis"
[1] "STARTing cell.. 170 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.185 0.187 0.109 0.165 0.151 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 170"
[1] "ENDing cell.. 170 With feature... MinorAxis"
[1] "STARTing cell.. 270 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0584 0.0699 -0.0876 -0.1547 -0.1535 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 270"
[1] "ENDing cell.. 270 With feature... MinorAxis"
[1] "STARTing cell.. 41 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.019 -0.08 -0.0103 -0.1361 -0.1771 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 41"
[1] "ENDing cell.. 41 With feature... MinorAxis"
[1] "STARTing cell.. 154 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.2612 -0.1836 -0.1501 -0.1199 -0.0421 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 154"
[1] "ENDing cell.. 154 With feature... MinorAxis"
[1] "STARTing cell.. 90 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.168 -0.1963 -0.2038 0.0356 0.1066 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 90"
[1] "ENDing cell.. 90 With feature... MinorAxis"
[1] "STARTing cell.. 145 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.1599 0.1122 0.0757 0.0297 -0.0157 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 145"
[1] "ENDing cell.. 145 With feature... MinorAxis"
[1] "STARTing cell.. 271 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.189 0.274 0.278 0.343 0.284 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 271"
[1] "ENDing cell.. 271 With feature... MinorAxis"
[1] "STARTing cell.. 183 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.157 -0.222 -0.192 -0.225 -0.24 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 183"
[1] "ENDing cell.. 183 With feature... MinorAxis"
[1] "STARTing cell.. 147 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0688 -0.119 -0.1097 -0.0466 -0.0122 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 147"
[1] "ENDing cell.. 147 With feature... MinorAxis"
[1] "STARTing cell.. 178 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.07961 0.03927 0.00579 -0.0623 -0.15141 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 178"
[1] "ENDing cell.. 178 With feature... MinorAxis"
[1] "STARTing cell.. 272 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1707 -0.0796 0.0143 0.0116 0.0264 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 272"
[1] "ENDing cell.. 272 With feature... MinorAxis"
[1] "STARTing cell.. 43 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1391 -0.1164 -0.1277 -0.123 -0.0884 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 43"
[1] "ENDing cell.. 43 With feature... MinorAxis"
[1] "STARTing cell.. 99 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.158 0.157 0.236 0.323 0.452 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 99"
[1] "ENDing cell.. 99 With feature... MinorAxis"
[1] "STARTing cell.. 155 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.134 -0.164 -0.245 -0.273 -0.341 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 155"
[1] "ENDing cell.. 155 With feature... MinorAxis"
[1] "STARTing cell.. 148 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.149 0.148 0.25 0.263 0.334 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 148"
[1] "ENDing cell.. 148 With feature... MinorAxis"
[1] "STARTing cell.. 215 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.356 0.34 0.275 0.233 0.21 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 215"
[1] "ENDing cell.. 215 With feature... MinorAxis"
[1] "STARTing cell.. 149 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.2955 -0.136 -0.1754 -0.0769 -0.0641 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 149"
[1] "ENDing cell.. 149 With feature... MinorAxis"
[1] "STARTing cell.. 89 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1225 -0.1106 -0.0273 0.0806 0.1774 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 89"
[1] "ENDing cell.. 89 With feature... MinorAxis"
[1] "STARTing cell.. 156 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.015 0.0206 0.0968 -0.0421 0.0868 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 156"
[1] "ENDing cell.. 156 With feature... MinorAxis"
[1] "STARTing cell.. 150 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0882 0.109 0.1075 0.0944 0.0517 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 150"
[1] "ENDing cell.. 150 With feature... MinorAxis"
[1] "STARTing cell.. 42 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.252 -0.219 -0.173 -0.15 -0.119 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 42"
[1] "ENDing cell.. 42 With feature... MinorAxis"
[1] "STARTing cell.. 44 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.202 0.272 0.306 0.312 0.283 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 44"
[1] "ENDing cell.. 44 With feature... MinorAxis"
[1] "STARTing cell.. 100 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.2687 -0.1895 -0.0546 -0.0446 0.0171 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 100"
[1] "ENDing cell.. 100 With feature... MinorAxis"
[1] "STARTing cell.. 153 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.3 0.376 0.421 0.497 0.575 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 153"
[1] "ENDing cell.. 153 With feature... MinorAxis"
[1] "STARTing cell.. 47 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.333 -0.149 -0.296 -0.171 -0.257 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 47"
[1] "ENDing cell.. 47 With feature... MinorAxis"
[1] "STARTing cell.. 202 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.18011 -0.1952 -0.21876 -0.18537 0.00793 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 202"
[1] "ENDing cell.. 202 With feature... MinorAxis"
[1] "STARTing cell.. 51 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.1708 0.2887 0.0494 0.0583 -0.0898 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 51"
[1] "ENDing cell.. 51 With feature... MinorAxis"
[1] "STARTing cell.. 260 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.06156 0.00403 0.11976 0.0692 0.04354 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 260"
[1] "ENDing cell.. 260 With feature... MinorAxis"
[1] "STARTing cell.. 217 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.1378 0.2157 0.1716 0.0717 -0.0149 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 217"
[1] "ENDing cell.. 217 With feature... MinorAxis"
[1] "STARTing cell.. 182 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.548 -0.457 -0.472 -0.626 -0.631 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 182"
[1] "ENDing cell.. 182 With feature... MinorAxis"
[1] "STARTing cell.. 184 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.268 0.332 0.382 0.455 0.452 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 184"
[1] "ENDing cell.. 184 With feature... MinorAxis"
[1] "STARTing cell.. 45 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.152 -0.0215 0.0744 0.1943 0.2196 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 45"
[1] "ENDing cell.. 45 With feature... MinorAxis"
[1] "STARTing cell.. 241 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.00711 -0.00714 0.03162 0.07639 0.06631 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 241"
[1] "ENDing cell.. 241 With feature... MinorAxis"
[1] "STARTing cell.. 82 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.2487 -0.2402 -0.2203 -0.1441 0.0117 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 82"
[1] "ENDing cell.. 82 With feature... MinorAxis"
[1] "STARTing cell.. 261 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1443 -0.0417 -0.0809 -0.0633 0.0231 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 261"
[1] "ENDing cell.. 261 With feature... MinorAxis"
[1] "STARTing cell.. 262 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.3246 0.2045 0.1379 0.1712 0.0737 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 262"
[1] "ENDing cell.. 262 With feature... MinorAxis"
[1] "STARTing cell.. 216 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.107 -0.1441 0.0809 0.0415 -0.0717 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 216"
[1] "ENDing cell.. 216 With feature... MinorAxis"
[1] "STARTing cell.. 66 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.211 -0.155 -0.202 -0.124 -0.358 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 66"
[1] "ENDing cell.. 66 With feature... MinorAxis"
[1] "STARTing cell.. 128 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0257 -0.0873 -0.0653 -0.053 -0.0919 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 128"
[1] "ENDing cell.. 128 With feature... MinorAxis"
[1] "STARTing cell.. 50 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1577 0.00493 -0.12902 -0.10931 -0.11378 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 50"
[1] "ENDing cell.. 50 With feature... MinorAxis"
[1] "STARTing cell.. 5 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0127 0.1455 0.1504 0.166 0.028 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 5"
[1] "ENDing cell.. 5 With feature... MinorAxis"
[1] "STARTing cell.. 26 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.07769 0.10077 0.00839 0.00331 0.02917 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 26"
[1] "ENDing cell.. 26 With feature... MinorAxis"
[1] "STARTing cell.. 129 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.1945 0.1893 0.1921 0.1293 0.0218 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 129"
[1] "ENDing cell.. 129 With feature... MinorAxis"
[1] "STARTing cell.. 67 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.181 -0.311 -0.3 -0.229 -0.135 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 67"
[1] "ENDing cell.. 67 With feature... MinorAxis"
[1] "STARTing cell.. 247 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.267 0.247 0.213 0.186 0.229 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 247"
[1] "ENDing cell.. 247 With feature... MinorAxis"
[1] "STARTing cell.. 134 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.024 0.114 0.123 0.153 0.231 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 134"
[1] "ENDing cell.. 134 With feature... MinorAxis"
[1] "STARTing cell.. 93 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.2301 0.1646 0.0724 0.0172 -0.0896 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 93"
[1] "ENDing cell.. 93 With feature... MinorAxis"
[1] "STARTing cell.. 248 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0655 0.1392 -0.0438 -0.1948 -0.2926 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 248"
[1] "ENDing cell.. 248 With feature... MinorAxis"
[1] "STARTing cell.. 157 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0809 0.0804 0.0452 0.1541 -0.0121 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 157"
[1] "ENDing cell.. 157 With feature... MinorAxis"
[1] "STARTing cell.. 46 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.015 0.134 0.198 0.356 0.351 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 46"
[1] "ENDing cell.. 46 With feature... MinorAxis"
[1] "STARTing cell.. 242 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1026 0.054 0.2078 0.1659 0.0856 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 242"
[1] "ENDing cell.. 242 With feature... MinorAxis"
[1] "STARTing cell.. 159 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0457 0.1176 0.0847 0.197 0.2243 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 159"
[1] "ENDing cell.. 159 With feature... MinorAxis"
[1] "STARTing cell.. 186 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0616 0.1724 -0.139 -0.3152 -0.0569 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 186"
[1] "ENDing cell.. 186 With feature... MinorAxis"
[1] "STARTing cell.. 228 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0473 -0.1055 -0.1587 -0.2019 -0.2129 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 228"
[1] "ENDing cell.. 228 With feature... MinorAxis"
[1] "STARTing cell.. 160 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.00776 -0.00313 0.11477 -0.13532 -0.22527 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 160"
[1] "ENDing cell.. 160 With feature... MinorAxis"
[1] "STARTing cell.. 279 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.1044 0.1456 0.1471 0.1205 0.0677 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 279"
[1] "ENDing cell.. 279 With feature... MinorAxis"
[1] "STARTing cell.. 53 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0345 0.0728 -0.0351 0.045 0.2329 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 53"
[1] "ENDing cell.. 53 With feature... MinorAxis"
[1] "STARTing cell.. 94 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.112 0.0948 0.0662 0.101 0.0243 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 94"
[1] "ENDing cell.. 94 With feature... MinorAxis"
[1] "STARTing cell.. 121 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.14 0.283 0.438 0.454 0.562 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 121"
[1] "ENDing cell.. 121 With feature... MinorAxis"
[1] "STARTing cell.. 213 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.23 0.29 0.34 0.369 0.502 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 213"
[1] "ENDing cell.. 213 With feature... MinorAxis"
[1] "STARTing cell.. 109 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.201 -0.369 -0.375 -0.205 -0.122 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 109"
[1] "ENDing cell.. 109 With feature... MinorAxis"
[1] "STARTing cell.. 110 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0868 -0.0605 0.0793 0.0138 0.0595 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 110"
[1] "ENDing cell.. 110 With feature... MinorAxis"
[1] "STARTing cell.. 101 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.06327 0.00441 -0.04209 -0.05296 -0.24169 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 101"
[1] "ENDing cell.. 101 With feature... MinorAxis"
[1] "STARTing cell.. 187 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.05932 0.00904 -0.15748 -0.19615 -0.15347 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 187"
[1] "ENDing cell.. 187 With feature... MinorAxis"
[1] "STARTing cell.. 263 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0824 0.0352 0.0545 -0.1176 -0.0724 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 263"
[1] "ENDing cell.. 263 With feature... MinorAxis"
[1] "STARTing cell.. 218 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.10491 -0.02117 0.00356 0.12723 0.11856 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 218"
[1] "ENDing cell.. 218 With feature... MinorAxis"
[1] "STARTing cell.. 19 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.1375 -0.0104 0.0669 0.1557 0.2292 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 19"
[1] "ENDing cell.. 19 With feature... MinorAxis"
[1] "STARTing cell.. 20 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] -0.0171 -0.0968 -0.1019 -0.2715 -0.2303 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 20"
[1] "ENDing cell.. 20 With feature... MinorAxis"
[1] "STARTing cell.. 224 With feature... MinorAxis"
List of 6
$ acf : num [1:27, 1, 1] 0.0937 0.1416 0.0224 -0.1175 -0.3477 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 224"
[1] "ENDing cell.. 224 With feature... MinorAxis"
[1] "STARTing cell.. 219 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.278 0.348 0.427 0.476 0.544 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 219"
[1] "ENDing cell.. 219 With feature... secondMajor"
[1] "STARTing cell.. 264 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0314 0.0133 0.1064 0.0919 -0.0672 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 264"
[1] "ENDing cell.. 264 With feature... secondMajor"
[1] "STARTing cell.. 136 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.022 0.159 0.318 0.512 0.592 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 136"
[1] "ENDing cell.. 136 With feature... secondMajor"
[1] "STARTing cell.. 54 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.1 0.131 0.232 0.282 0.404 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 54"
[1] "ENDing cell.. 54 With feature... secondMajor"
[1] "STARTing cell.. 69 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.05202 -0.11668 0.05808 0.14365 0.00914 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 69"
[1] "ENDing cell.. 69 With feature... secondMajor"
[1] "STARTing cell.. 111 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.333 -0.242 -0.235 -0.229 -0.108 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 111"
[1] "ENDing cell.. 111 With feature... secondMajor"
[1] "STARTing cell.. 189 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.0122 0.04 0.0217 0.0647 0.0617 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 189"
[1] "ENDing cell.. 189 With feature... secondMajor"
[1] "STARTing cell.. 171 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.284 -0.156 -0.236 -0.228 -0.247 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 171"
[1] "ENDing cell.. 171 With feature... secondMajor"
[1] "STARTing cell.. 231 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.00844 -0.04693 0.01277 0.16411 0.1968 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 231"
[1] "ENDing cell.. 231 With feature... secondMajor"
[1] "STARTing cell.. 205 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.235 -0.236 -0.25 -0.24 -0.268 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 205"
[1] "ENDing cell.. 205 With feature... secondMajor"
[1] "STARTing cell.. 244 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.218 0.191 0.159 0.111 0.102 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 244"
[1] "ENDing cell.. 244 With feature... secondMajor"
[1] "STARTing cell.. 1 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.125 0.16 0.16 0.165 0.207 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 1"
[1] "ENDing cell.. 1 With feature... secondMajor"
[1] "STARTing cell.. 36 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.0717 0.1191 0.1304 0.2165 0.1947 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 36"
[1] "ENDing cell.. 36 With feature... secondMajor"
[1] "STARTing cell.. 7 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.000141 0.047322 -0.117062 0.124567 -0.022004 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 7"
[1] "ENDing cell.. 7 With feature... secondMajor"
[1] "STARTing cell.. 102 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.0502 -0.0604 -0.1351 -0.2248 -0.3263 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 102"
[1] "ENDing cell.. 102 With feature... secondMajor"
[1] "STARTing cell.. 22 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.399 0.451 0.427 0.551 0.532 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 22"
[1] "ENDing cell.. 22 With feature... secondMajor"
[1] "STARTing cell.. 188 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0798 -0.1082 -0.1002 -0.1189 -0.0888 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 188"
[1] "ENDing cell.. 188 With feature... secondMajor"
[1] "STARTing cell.. 55 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.0756 0.1337 0.2291 0.2242 0.2773 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 55"
[1] "ENDing cell.. 55 With feature... secondMajor"
[1] "STARTing cell.. 243 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.223 0.191 0.173 0.15 0.152 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 243"
[1] "ENDing cell.. 243 With feature... secondMajor"
[1] "STARTing cell.. 123 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.181 -0.259 -0.328 -0.31 -0.44 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 123"
[1] "ENDing cell.. 123 With feature... secondMajor"
[1] "STARTing cell.. 21 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.355 0.41 0.5 0.562 0.614 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 21"
[1] "ENDing cell.. 21 With feature... secondMajor"
[1] "STARTing cell.. 163 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.0885 -0.1672 -0.2644 -0.1052 -0.1828 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 163"
[1] "ENDing cell.. 163 With feature... secondMajor"
[1] "STARTing cell.. 112 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.00343 0.04962 0.02879 0.08795 -0.00612 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 112"
[1] "ENDing cell.. 112 With feature... secondMajor"
[1] "STARTing cell.. 33 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.05556 -0.00196 -0.04239 -0.07429 -0.22644 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 33"
[1] "ENDing cell.. 33 With feature... secondMajor"
[1] "STARTing cell.. 172 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.3408 0.2836 0.1792 0.1037 0.0657 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 172"
[1] "ENDing cell.. 172 With feature... secondMajor"
[1] "STARTing cell.. 95 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.0924 0.1386 0.1222 0.1927 0.1949 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 95"
[1] "ENDing cell.. 95 With feature... secondMajor"
[1] "STARTing cell.. 30 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.1882 0.1824 0.139 0.1887 0.0704 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 30"
[1] "ENDing cell.. 30 With feature... secondMajor"
[1] "STARTing cell.. 203 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.0332 0.1321 0.2188 0.2223 0.3512 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 203"
[1] "ENDing cell.. 203 With feature... secondMajor"
[1] "STARTing cell.. 274 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.1462 0.0475 0.1784 0.0532 0.0153 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 274"
[1] "ENDing cell.. 274 With feature... secondMajor"
[1] "STARTing cell.. 131 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.1276 -0.226 -0.3056 -0.0616 -0.3634 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 131"
[1] "ENDing cell.. 131 With feature... secondMajor"
[1] "STARTing cell.. 68 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.271 0.182 0.195 0.224 0.247 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 68"
[1] "ENDing cell.. 68 With feature... secondMajor"
[1] "STARTing cell.. 71 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.239 0.254 0.276 0.391 0.414 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 71"
[1] "ENDing cell.. 71 With feature... secondMajor"
[1] "STARTing cell.. 135 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.0332 0.1289 0.2465 0.3451 0.3584 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 135"
[1] "ENDing cell.. 135 With feature... secondMajor"
[1] "STARTing cell.. 84 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.279 -0.328 -0.365 -0.345 -0.308 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 84"
[1] "ENDing cell.. 84 With feature... secondMajor"
[1] "STARTing cell.. 206 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0602 -0.2681 -0.2311 -0.3425 -0.3554 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 206"
[1] "ENDing cell.. 206 With feature... secondMajor"
[1] "STARTing cell.. 255 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.221 0.28 0.337 0.293 0.439 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 255"
[1] "ENDing cell.. 255 With feature... secondMajor"
[1] "STARTing cell.. 64 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.376 -0.301 -0.301 -0.368 -0.457 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 64"
[1] "ENDing cell.. 64 With feature... secondMajor"
[1] "STARTing cell.. 9 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.1224 0.1156 0.0973 0.1206 0.1128 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 9"
[1] "ENDing cell.. 9 With feature... secondMajor"
[1] "STARTing cell.. 122 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.00679 0.00501 0.09176 0.1222 0.05232 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 122"
[1] "ENDing cell.. 122 With feature... secondMajor"
[1] "STARTing cell.. 23 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0121 -0.091 -0.1866 -0.0943 -0.1287 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 23"
[1] "ENDing cell.. 23 With feature... secondMajor"
[1] "STARTing cell.. 162 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.157 -0.201 -0.167 -0.167 -0.139 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 162"
[1] "ENDing cell.. 162 With feature... secondMajor"
[1] "STARTing cell.. 229 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.146 0.267 0.354 0.435 0.409 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 229"
[1] "ENDing cell.. 229 With feature... secondMajor"
[1] "STARTing cell.. 57 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0538 -0.0516 0.1152 0.0128 0.2048 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 57"
[1] "ENDing cell.. 57 With feature... secondMajor"
[1] "STARTing cell.. 249 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0612 -0.2573 -0.0738 -0.1586 -0.0293 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 249"
[1] "ENDing cell.. 249 With feature... secondMajor"
[1] "STARTing cell.. 125 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.0345 0.1053 0.1334 0.1919 0.273 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 125"
[1] "ENDing cell.. 125 With feature... secondMajor"
[1] "STARTing cell.. 8 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.628 0.611 0.514 0.545 0.568 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 8"
[1] "ENDing cell.. 8 With feature... secondMajor"
[1] "STARTing cell.. 165 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.2867 0.206 0.0873 0.0322 0.0553 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 165"
[1] "ENDing cell.. 165 With feature... secondMajor"
[1] "STARTing cell.. 83 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.061 -0.1147 -0.0919 -0.1646 -0.238 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 83"
[1] "ENDing cell.. 83 With feature... secondMajor"
[1] "STARTing cell.. 113 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.1231 -0.0028 -0.1767 -0.1916 -0.0196 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 113"
[1] "ENDing cell.. 113 With feature... secondMajor"
[1] "STARTing cell.. 220 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.2259 -0.167 -0.1427 -0.0646 -0.0301 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 220"
[1] "ENDing cell.. 220 With feature... secondMajor"
[1] "STARTing cell.. 174 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.163 0.229 0.277 0.287 0.388 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 174"
[1] "ENDing cell.. 174 With feature... secondMajor"
[1] "STARTing cell.. 56 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.17 -0.115 0.013 0.173 0.288 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 56"
[1] "ENDing cell.. 56 With feature... secondMajor"
[1] "STARTing cell.. 173 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.343 -0.3 -0.341 -0.408 -0.343 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 173"
[1] "ENDing cell.. 173 With feature... secondMajor"
[1] "STARTing cell.. 232 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.2207 -0.1238 -0.0383 -0.0287 -0.1053 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 232"
[1] "ENDing cell.. 232 With feature... secondMajor"
[1] "STARTing cell.. 37 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.122 0.254 0.326 0.257 0.137 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 37"
[1] "ENDing cell.. 37 With feature... secondMajor"
[1] "STARTing cell.. 86 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.4514 0.3525 0.3076 0.1947 0.0323 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 86"
[1] "ENDing cell.. 86 With feature... secondMajor"
[1] "STARTing cell.. 103 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.05684 0.00398 -0.0475 -0.08495 -0.15367 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 103"
[1] "ENDing cell.. 103 With feature... secondMajor"
[1] "STARTing cell.. 208 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.07585 -0.00757 0.00127 0.09964 0.07278 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 208"
[1] "ENDing cell.. 208 With feature... secondMajor"
[1] "STARTing cell.. 190 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.541 -0.61 -0.563 -0.513 -0.596 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 190"
[1] "ENDing cell.. 190 With feature... secondMajor"
[1] "STARTing cell.. 4 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.382 0.397 0.401 0.39 0.36 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 4"
[1] "ENDing cell.. 4 With feature... secondMajor"
[1] "STARTing cell.. 238 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.236 -0.236 -0.288 -0.329 -0.369 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 238"
[1] "ENDing cell.. 238 With feature... secondMajor"
[1] "STARTing cell.. 11 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.264 0.221 0.23 0.337 0.354 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 11"
[1] "ENDing cell.. 11 With feature... secondMajor"
[1] "STARTing cell.. 29 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.167 0.191 0.22 0.205 0.104 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 29"
[1] "ENDing cell.. 29 With feature... secondMajor"
[1] "STARTing cell.. 59 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.283 0.429 0.473 0.598 0.587 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 59"
[1] "ENDing cell.. 59 With feature... secondMajor"
[1] "STARTing cell.. 96 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0148 0.09609 0.00985 0.09481 -0.12503 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 96"
[1] "ENDing cell.. 96 With feature... secondMajor"
[1] "STARTing cell.. 204 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.281 -0.261 -0.361 -0.348 -0.44 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 204"
[1] "ENDing cell.. 204 With feature... secondMajor"
[1] "STARTing cell.. 275 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.254 -0.365 -0.418 -0.481 -0.49 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 275"
[1] "ENDing cell.. 275 With feature... secondMajor"
[1] "STARTing cell.. 130 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.134 -0.294 -0.312 -0.276 -0.244 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 130"
[1] "ENDing cell.. 130 With feature... secondMajor"
[1] "STARTing cell.. 137 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.382 -0.37 -0.402 -0.362 -0.295 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 137"
[1] "ENDing cell.. 137 With feature... secondMajor"
[1] "STARTing cell.. 140 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.1209 -0.058 -0.0294 0.0493 -0.0188 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 140"
[1] "ENDing cell.. 140 With feature... secondMajor"
[1] "STARTing cell.. 226 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.523 0.539 0.479 0.477 0.457 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 226"
[1] "ENDing cell.. 226 With feature... secondMajor"
[1] "STARTing cell.. 74 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.3511 -0.2144 -0.2033 -0.1483 -0.0137 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 74"
[1] "ENDing cell.. 74 With feature... secondMajor"
[1] "STARTing cell.. 256 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.1452 -0.1634 -0.1997 -0.1344 -0.0959 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 256"
[1] "ENDing cell.. 256 With feature... secondMajor"
[1] "STARTing cell.. 65 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.0359 0.0378 0.064 0.0105 -0.1651 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 65"
[1] "ENDing cell.. 65 With feature... secondMajor"
[1] "STARTing cell.. 87 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.158 -0.22 -0.264 -0.264 -0.31 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 87"
[1] "ENDing cell.. 87 With feature... secondMajor"
[1] "STARTing cell.. 124 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.0636 -0.0674 0.025 0.041 0.0694 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 124"
[1] "ENDing cell.. 124 With feature... secondMajor"
[1] "STARTing cell.. 210 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.00453 -0.08638 0.04732 -0.28835 -0.23409 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 210"
[1] "ENDing cell.. 210 With feature... secondMajor"
[1] "STARTing cell.. 164 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.22 0.292 0.205 0.407 0.295 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 164"
[1] "ENDing cell.. 164 With feature... secondMajor"
[1] "STARTing cell.. 230 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0961 -0.1595 -0.1673 -0.1361 -0.1584 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 230"
[1] "ENDing cell.. 230 With feature... secondMajor"
[1] "STARTing cell.. 13 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.1158 -0.1006 -0.0261 0.0276 -0.0564 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 13"
[1] "ENDing cell.. 13 With feature... secondMajor"
[1] "STARTing cell.. 250 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.03465 0.02864 0.00628 0.02393 -0.0036 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 250"
[1] "ENDing cell.. 250 With feature... secondMajor"
[1] "STARTing cell.. 10 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.163 0.197 0.216 0.201 0.229 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 10"
[1] "ENDing cell.. 10 With feature... secondMajor"
[1] "STARTing cell.. 85 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.11 0.179 0.166 0.187 0.321 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 85"
[1] "ENDing cell.. 85 With feature... secondMajor"
[1] "STARTing cell.. 61 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.149 0.252 0.162 0.249 0.135 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 61"
[1] "ENDing cell.. 61 With feature... secondMajor"
[1] "STARTing cell.. 221 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.202 0.285 0.349 0.429 0.493 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 221"
[1] "ENDing cell.. 221 With feature... secondMajor"
[1] "STARTing cell.. 265 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.2423 0.107 0.0353 0.0283 -0.0947 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 265"
[1] "ENDing cell.. 265 With feature... secondMajor"
[1] "STARTing cell.. 58 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.493 -0.513 -0.496 -0.518 -0.667 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 58"
[1] "ENDing cell.. 58 With feature... secondMajor"
[1] "STARTing cell.. 114 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.15537 0.00293 -0.15095 -0.26863 -0.23758 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 114"
[1] "ENDing cell.. 114 With feature... secondMajor"
[1] "STARTing cell.. 233 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0172 -0.0244 -0.0849 -0.2122 -0.2584 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 233"
[1] "ENDing cell.. 233 With feature... secondMajor"
[1] "STARTing cell.. 246 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0569 -0.1134 -0.0585 0.0328 -0.1356 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 246"
[1] "ENDing cell.. 246 With feature... secondMajor"
[1] "STARTing cell.. 104 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.21 -0.315 -0.419 -0.52 -0.577 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 104"
[1] "ENDing cell.. 104 With feature... secondMajor"
[1] "STARTing cell.. 76 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.1029 0.1826 0.0388 -0.1289 0.1454 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 76"
[1] "ENDing cell.. 76 With feature... secondMajor"
[1] "STARTing cell.. 239 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0785 -0.0689 -0.128 -0.1581 -0.2911 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 239"
[1] "ENDing cell.. 239 With feature... secondMajor"
[1] "STARTing cell.. 88 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.01609 0.06997 0.17492 0.00885 0.03449 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 88"
[1] "ENDing cell.. 88 With feature... secondMajor"
[1] "STARTing cell.. 211 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0324 -0.1676 -0.1955 -0.2437 -0.2847 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 211"
[1] "ENDing cell.. 211 With feature... secondMajor"
[1] "STARTing cell.. 24 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.261 0.335 0.336 0.378 0.404 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 24"
[1] "ENDing cell.. 24 With feature... secondMajor"
[1] "STARTing cell.. 276 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.065 0.07 0.1249 0.0883 0.1245 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 276"
[1] "ENDing cell.. 276 With feature... secondMajor"
[1] "STARTing cell.. 115 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.0343 -0.0123 -0.1946 -0.0318 -0.1907 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 115"
[1] "ENDing cell.. 115 With feature... secondMajor"
[1] "STARTing cell.. 132 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.21935 0.16447 0.02527 0.00539 -0.05251 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 132"
[1] "ENDing cell.. 132 With feature... secondMajor"
[1] "STARTing cell.. 138 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.215 -0.278 -0.274 -0.3 -0.334 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 138"
[1] "ENDing cell.. 138 With feature... secondMajor"
[1] "STARTing cell.. 227 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.1496 0.07312 0.00715 -0.03176 -0.1403 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 227"
[1] "ENDing cell.. 227 With feature... secondMajor"
[1] "STARTing cell.. 257 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.02337 -0.03724 -0.00926 0.07418 0.10294 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 257"
[1] "ENDing cell.. 257 With feature... secondMajor"
[1] "STARTing cell.. 133 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.000975 0.262255 -0.109932 0.274338 0.301779 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 133"
[1] "ENDing cell.. 133 With feature... secondMajor"
[1] "STARTing cell.. 126 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.18598 -0.01678 0.00457 0.17585 0.30765 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 126"
[1] "ENDing cell.. 126 With feature... secondMajor"
[1] "STARTing cell.. 78 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.1111 0.0941 -0.0109 -0.1434 -0.2782 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 78"
[1] "ENDing cell.. 78 With feature... secondMajor"
[1] "STARTing cell.. 166 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.2668 -0.1866 -0.1247 -0.0987 -0.1499 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 166"
[1] "ENDing cell.. 166 With feature... secondMajor"
[1] "STARTing cell.. 195 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.2276 -0.0934 -0.049 0.025 -0.0748 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 195"
[1] "ENDing cell.. 195 With feature... secondMajor"
[1] "STARTing cell.. 251 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.1461 -0.1449 -0.081 -0.0614 0.0752 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 251"
[1] "ENDing cell.. 251 With feature... secondMajor"
[1] "STARTing cell.. 12 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.15 -0.171 -0.217 -0.293 -0.355 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 12"
[1] "ENDing cell.. 12 With feature... secondMajor"
[1] "STARTing cell.. 222 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.0568 -0.097 -0.2303 -0.3759 -0.498 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 222"
[1] "ENDing cell.. 222 With feature... secondMajor"
[1] "STARTing cell.. 60 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.1347 -0.0642 -0.1319 -0.0349 -0.0493 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 60"
[1] "ENDing cell.. 60 With feature... secondMajor"
[1] "STARTing cell.. 63 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.203 0.282 0.4 0.394 0.271 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 63"
[1] "ENDing cell.. 63 With feature... secondMajor"
[1] "STARTing cell.. 175 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.215 0.326 0.408 0.513 0.542 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 175"
[1] "ENDing cell.. 175 With feature... secondMajor"
[1] "STARTing cell.. 234 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.156 -0.277 -0.24 -0.343 -0.425 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 234"
[1] "ENDing cell.. 234 With feature... secondMajor"
[1] "STARTing cell.. 192 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.231 -0.306 -0.292 -0.252 -0.278 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 192"
[1] "ENDing cell.. 192 With feature... secondMajor"
[1] "STARTing cell.. 240 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.226 0.307 0.341 0.109 0.11 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 240"
[1] "ENDing cell.. 240 With feature... secondMajor"
[1] "STARTing cell.. 80 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.374 -0.404 -0.417 -0.403 -0.44 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 80"
[1] "ENDing cell.. 80 With feature... secondMajor"
[1] "STARTing cell.. 97 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.395 0.499 0.476 0.435 0.354 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 97"
[1] "ENDing cell.. 97 With feature... secondMajor"
[1] "STARTing cell.. 207 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.483 0.514 0.511 0.559 0.558 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 207"
[1] "ENDing cell.. 207 With feature... secondMajor"
[1] "STARTing cell.. 277 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.17154 0.12537 -0.00155 -0.14771 -0.17989 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 277"
[1] "ENDing cell.. 277 With feature... secondMajor"
[1] "STARTing cell.. 73 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0928 -0.1791 -0.2024 -0.272 -0.3262 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 73"
[1] "ENDing cell.. 73 With feature... secondMajor"
[1] "STARTing cell.. 139 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0153 0.101 0.2432 0.2123 0.2344 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 139"
[1] "ENDing cell.. 139 With feature... secondMajor"
[1] "STARTing cell.. 258 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0207 -0.0745 -0.1247 -0.1272 -0.1988 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 258"
[1] "ENDing cell.. 258 With feature... secondMajor"
[1] "STARTing cell.. 179 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.114 -0.119 -0.138 -0.152 -0.139 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 179"
[1] "ENDing cell.. 179 With feature... secondMajor"
[1] "STARTing cell.. 167 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0953 -0.0115 0.011 -0.0436 0.0375 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 167"
[1] "ENDing cell.. 167 With feature... secondMajor"
[1] "STARTing cell.. 252 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.106 -0.121 -0.156 -0.238 -0.247 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 252"
[1] "ENDing cell.. 252 With feature... secondMajor"
[1] "STARTing cell.. 81 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.1657 -0.142 -0.0722 0.011 -0.0237 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 81"
[1] "ENDing cell.. 81 With feature... secondMajor"
[1] "STARTing cell.. 14 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.2565 -0.2296 -0.205 -0.1499 -0.0281 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 14"
[1] "ENDing cell.. 14 With feature... secondMajor"
[1] "STARTing cell.. 199 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.1434 0.1669 0.0838 0.1119 0.2939 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 199"
[1] "ENDing cell.. 199 With feature... secondMajor"
[1] "STARTing cell.. 266 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.013 -0.0461 -0.1122 -0.1945 -0.202 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 266"
[1] "ENDing cell.. 266 With feature... secondMajor"
[1] "STARTing cell.. 116 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.405 0.404 0.445 0.462 0.49 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 116"
[1] "ENDing cell.. 116 With feature... secondMajor"
[1] "STARTing cell.. 176 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.02 0.0684 0.1903 0.2473 0.3079 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 176"
[1] "ENDing cell.. 176 With feature... secondMajor"
[1] "STARTing cell.. 235 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.04141 0.04405 -0.00283 0.05436 0.06232 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 235"
[1] "ENDing cell.. 235 With feature... secondMajor"
[1] "STARTing cell.. 38 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.15266 0.09422 -0.00257 -0.014 -0.113 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 38"
[1] "ENDing cell.. 38 With feature... secondMajor"
[1] "STARTing cell.. 105 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.413 0.407 0.442 0.523 0.53 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 105"
[1] "ENDing cell.. 105 With feature... secondMajor"
[1] "STARTing cell.. 193 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.176 0.25 0.19 0.117 0.265 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 193"
[1] "ENDing cell.. 193 With feature... secondMajor"
[1] "STARTing cell.. 181 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.0361 -0.0256 -0.1969 -0.17 -0.1053 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 181"
[1] "ENDing cell.. 181 With feature... secondMajor"
[1] "STARTing cell.. 28 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.12876 0.02235 0.02999 0.01371 0.00481 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 28"
[1] "ENDing cell.. 28 With feature... secondMajor"
[1] "STARTing cell.. 98 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.0902 -0.0137 0.0805 0.1148 0.1267 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 98"
[1] "ENDing cell.. 98 With feature... secondMajor"
[1] "STARTing cell.. 200 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.238 -0.285 -0.372 -0.231 -0.181 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 200"
[1] "ENDing cell.. 200 With feature... secondMajor"
[1] "STARTing cell.. 209 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.271 -0.317 -0.323 -0.331 -0.322 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 209"
[1] "ENDing cell.. 209 With feature... secondMajor"
[1] "STARTing cell.. 278 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.226 -0.264 -0.304 -0.346 -0.423 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 278"
[1] "ENDing cell.. 278 With feature... secondMajor"
[1] "STARTing cell.. 75 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.03 0.0175 0.1093 0.2715 0.2539 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 75"
[1] "ENDing cell.. 75 With feature... secondMajor"
[1] "STARTing cell.. 141 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.204 0.327 0.231 0.198 0.166 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 141"
[1] "ENDing cell.. 141 With feature... secondMajor"
[1] "STARTing cell.. 259 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0312 0.0459 0.0605 0.1156 0.1713 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 259"
[1] "ENDing cell.. 259 With feature... secondMajor"
[1] "STARTing cell.. 16 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.408 0.325 0.282 0.268 0.257 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 16"
[1] "ENDing cell.. 16 With feature... secondMajor"
[1] "STARTing cell.. 267 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.2 0.159 0.177 0.184 0.158 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 267"
[1] "ENDing cell.. 267 With feature... secondMajor"
[1] "STARTing cell.. 201 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.264 0.341 0.43 0.526 0.498 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 201"
[1] "ENDing cell.. 201 With feature... secondMajor"
[1] "STARTing cell.. 117 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0335 -0.0343 -0.0595 -0.09 -0.0605 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 117"
[1] "ENDing cell.. 117 With feature... secondMajor"
[1] "STARTing cell.. 177 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.20037 -0.04472 -0.00941 -0.05902 -0.03142 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 177"
[1] "ENDing cell.. 177 With feature... secondMajor"
[1] "STARTing cell.. 15 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.417 -0.41 -0.488 -0.434 -0.365 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 15"
[1] "ENDing cell.. 15 With feature... secondMajor"
[1] "STARTing cell.. 106 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.1283 -0.1586 -0.1092 0.0136 0.1204 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 106"
[1] "ENDing cell.. 106 With feature... secondMajor"
[1] "STARTing cell.. 194 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.1147 -0.0886 -0.0519 -0.0384 -0.0943 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 194"
[1] "ENDing cell.. 194 With feature... secondMajor"
[1] "STARTing cell.. 31 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.268 -0.209 -0.141 -0.129 -0.17 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 31"
[1] "ENDing cell.. 31 With feature... secondMajor"
[1] "STARTing cell.. 77 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.02709 -0.05285 0.13811 -0.00449 0.02176 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 77"
[1] "ENDing cell.. 77 With feature... secondMajor"
[1] "STARTing cell.. 91 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.204037 0.080022 0.011918 -0.063417 -0.000847 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 91"
[1] "ENDing cell.. 91 With feature... secondMajor"
[1] "STARTing cell.. 142 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.1203 -0.1248 -0.121 -0.112 0.0047 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 142"
[1] "ENDing cell.. 142 With feature... secondMajor"
[1] "STARTing cell.. 17 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.0653 -0.10422 -0.0082 0.06013 0.00839 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 17"
[1] "ENDing cell.. 17 With feature... secondMajor"
[1] "STARTing cell.. 62 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.00326 0.02832 0.04864 0.01306 0.0377 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 62"
[1] "ENDing cell.. 62 With feature... secondMajor"
[1] "STARTing cell.. 168 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.176 0.233 0.224 0.209 0.251 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 168"
[1] "ENDing cell.. 168 With feature... secondMajor"
[1] "STARTing cell.. 127 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.0538 0.1509 0.1876 0.2654 0.2825 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 127"
[1] "ENDing cell.. 127 With feature... secondMajor"
[1] "STARTing cell.. 253 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.404 0.382 0.415 0.384 0.299 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 253"
[1] "ENDing cell.. 253 With feature... secondMajor"
[1] "STARTing cell.. 118 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.322 -0.384 -0.404 -0.38 -0.415 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 118"
[1] "ENDing cell.. 118 With feature... secondMajor"
[1] "STARTing cell.. 39 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.1223 0.0333 0.0988 0.0587 0.1153 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 39"
[1] "ENDing cell.. 39 With feature... secondMajor"
[1] "STARTing cell.. 107 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.401 0.476 0.508 0.577 0.613 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 107"
[1] "ENDing cell.. 107 With feature... secondMajor"
[1] "STARTing cell.. 196 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0828 -0.0343 -0.0679 -0.1017 -0.1339 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 196"
[1] "ENDing cell.. 196 With feature... secondMajor"
[1] "STARTing cell.. 212 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.261 -0.3 -0.22 -0.249 -0.273 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 212"
[1] "ENDing cell.. 212 With feature... secondMajor"
[1] "STARTing cell.. 79 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.27 0.302 0.214 0.112 0.178 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 79"
[1] "ENDing cell.. 79 With feature... secondMajor"
[1] "STARTing cell.. 143 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.1573 -0.1327 -0.1564 -0.1405 -0.0829 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 143"
[1] "ENDing cell.. 143 With feature... secondMajor"
[1] "STARTing cell.. 92 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.1019 -0.0885 -0.0289 0.08 -0.02 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 92"
[1] "ENDing cell.. 92 With feature... secondMajor"
[1] "STARTing cell.. 169 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.217 -0.191 -0.267 -0.345 -0.362 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 169"
[1] "ENDing cell.. 169 With feature... secondMajor"
[1] "STARTing cell.. 254 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.00095 -0.07785 -0.25664 -0.2032 -0.16002 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 254"
[1] "ENDing cell.. 254 With feature... secondMajor"
[1] "STARTing cell.. 269 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.155 -0.158 -0.215 -0.239 -0.27 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 269"
[1] "ENDing cell.. 269 With feature... secondMajor"
[1] "STARTing cell.. 119 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.276 -0.319 -0.355 -0.455 -0.524 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 119"
[1] "ENDing cell.. 119 With feature... secondMajor"
[1] "STARTing cell.. 180 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0963 -0.0695 0.0624 0.1071 0.1963 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 180"
[1] "ENDing cell.. 180 With feature... secondMajor"
[1] "STARTing cell.. 151 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.08604 -0.01899 -0.14551 0.00947 0.08843 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 151"
[1] "ENDing cell.. 151 With feature... secondMajor"
[1] "STARTing cell.. 40 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.0442 0.0721 0.1484 0.3075 0.3301 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 40"
[1] "ENDing cell.. 40 With feature... secondMajor"
[1] "STARTing cell.. 191 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0787 -0.0368 -0.0201 0.0159 0.0417 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 191"
[1] "ENDing cell.. 191 With feature... secondMajor"
[1] "STARTing cell.. 108 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0719 -0.0396 0.0143 0.0179 0.0388 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 108"
[1] "ENDing cell.. 108 With feature... secondMajor"
[1] "STARTing cell.. 198 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.0882 0.2379 -0.1482 -0.0259 -0.179 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 198"
[1] "ENDing cell.. 198 With feature... secondMajor"
[1] "STARTing cell.. 144 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.113 -0.127 -0.144 -0.249 -0.304 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 144"
[1] "ENDing cell.. 144 With feature... secondMajor"
[1] "STARTing cell.. 170 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.168 -0.16 -0.228 -0.193 -0.264 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 170"
[1] "ENDing cell.. 170 With feature... secondMajor"
[1] "STARTing cell.. 270 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.1783 -0.1057 -0.0147 0.0338 0.1907 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 270"
[1] "ENDing cell.. 270 With feature... secondMajor"
[1] "STARTing cell.. 41 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.468 -0.55 -0.571 -0.621 -0.517 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 41"
[1] "ENDing cell.. 41 With feature... secondMajor"
[1] "STARTing cell.. 154 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.13863 -0.05625 -0.01309 0.00485 0.12902 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 154"
[1] "ENDing cell.. 154 With feature... secondMajor"
[1] "STARTing cell.. 90 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.147 -0.153 -0.298 -0.313 -0.342 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 90"
[1] "ENDing cell.. 90 With feature... secondMajor"
[1] "STARTing cell.. 145 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.448 0.448 0.35 0.303 0.341 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 145"
[1] "ENDing cell.. 145 With feature... secondMajor"
[1] "STARTing cell.. 271 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.1742 -0.1342 -0.1422 -0.0555 -0.0461 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 271"
[1] "ENDing cell.. 271 With feature... secondMajor"
[1] "STARTing cell.. 183 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.25 -0.271 -0.431 -0.509 -0.494 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 183"
[1] "ENDing cell.. 183 With feature... secondMajor"
[1] "STARTing cell.. 147 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.291 -0.335 -0.348 -0.398 -0.426 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 147"
[1] "ENDing cell.. 147 With feature... secondMajor"
[1] "STARTing cell.. 178 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.0784 0.0187 0.0241 0.0234 0.0536 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 178"
[1] "ENDing cell.. 178 With feature... secondMajor"
[1] "STARTing cell.. 272 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.0192 -0.0943 -0.0596 -0.1873 -0.1478 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 272"
[1] "ENDing cell.. 272 With feature... secondMajor"
[1] "STARTing cell.. 43 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.623 -0.586 -0.471 -0.34 -0.329 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 43"
[1] "ENDing cell.. 43 With feature... secondMajor"
[1] "STARTing cell.. 99 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.256 -0.333 -0.223 -0.212 -0.107 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 99"
[1] "ENDing cell.. 99 With feature... secondMajor"
[1] "STARTing cell.. 155 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.2475 0.29 0.1281 0.0598 0.1892 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 155"
[1] "ENDing cell.. 155 With feature... secondMajor"
[1] "STARTing cell.. 148 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.1182 -0.0976 0.062 0.0196 -0.0571 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 148"
[1] "ENDing cell.. 148 With feature... secondMajor"
[1] "STARTing cell.. 215 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.00322 -0.1794 -0.15413 0.00512 -0.03546 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 215"
[1] "ENDing cell.. 215 With feature... secondMajor"
[1] "STARTing cell.. 149 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.198 0.214 0.262 0.252 0.221 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 149"
[1] "ENDing cell.. 149 With feature... secondMajor"
[1] "STARTing cell.. 89 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.208 -0.017 -0.247 -0.342 -0.424 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 89"
[1] "ENDing cell.. 89 With feature... secondMajor"
[1] "STARTing cell.. 156 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0342 0.0785 0.0453 -0.1788 -0.2833 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 156"
[1] "ENDing cell.. 156 With feature... secondMajor"
[1] "STARTing cell.. 150 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.415 -0.369 -0.348 -0.439 -0.475 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 150"
[1] "ENDing cell.. 150 With feature... secondMajor"
[1] "STARTing cell.. 42 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.02228 -0.02188 0.00708 0.10961 0.30266 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 42"
[1] "ENDing cell.. 42 With feature... secondMajor"
[1] "STARTing cell.. 44 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.0244 -0.00884 -0.08196 -0.09901 -0.11996 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 44"
[1] "ENDing cell.. 44 With feature... secondMajor"
[1] "STARTing cell.. 100 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.121 -0.139 -0.235 -0.165 -0.305 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 100"
[1] "ENDing cell.. 100 With feature... secondMajor"
[1] "STARTing cell.. 153 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.32 0.393 0.464 0.542 0.592 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 153"
[1] "ENDing cell.. 153 With feature... secondMajor"
[1] "STARTing cell.. 47 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.18426 0.00309 -0.10248 -0.09287 -0.05688 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 47"
[1] "ENDing cell.. 47 With feature... secondMajor"
[1] "STARTing cell.. 202 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.233 0.117 0.31 0.299 0.403 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 202"
[1] "ENDing cell.. 202 With feature... secondMajor"
[1] "STARTing cell.. 51 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.166 0.1988 0.061 0.0256 -0.0989 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 51"
[1] "ENDing cell.. 51 With feature... secondMajor"
[1] "STARTing cell.. 260 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0184 0.1249 0.1396 0.1038 0.1358 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 260"
[1] "ENDing cell.. 260 With feature... secondMajor"
[1] "STARTing cell.. 217 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.02969 0.02485 0.07965 0.00553 0.0677 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 217"
[1] "ENDing cell.. 217 With feature... secondMajor"
[1] "STARTing cell.. 182 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.1294 0.0558 0.2042 0.1974 0.2611 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 182"
[1] "ENDing cell.. 182 With feature... secondMajor"
[1] "STARTing cell.. 184 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.1384 -0.0982 -0.0635 -0.0159 0.0659 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 184"
[1] "ENDing cell.. 184 With feature... secondMajor"
[1] "STARTing cell.. 45 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.298 0.327 0.372 0.427 0.41 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 45"
[1] "ENDing cell.. 45 With feature... secondMajor"
[1] "STARTing cell.. 241 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.0568 -0.0501 -0.0752 -0.0662 -0.0682 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 241"
[1] "ENDing cell.. 241 With feature... secondMajor"
[1] "STARTing cell.. 82 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.0744 0.0686 0.0348 0.078 -0.0402 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 82"
[1] "ENDing cell.. 82 With feature... secondMajor"
[1] "STARTing cell.. 261 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.041 0.0143 0.0363 0.0118 0.2039 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 261"
[1] "ENDing cell.. 261 With feature... secondMajor"
[1] "STARTing cell.. 262 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0739 -0.0351 -0.031 -0.0486 -0.0368 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 262"
[1] "ENDing cell.. 262 With feature... secondMajor"
[1] "STARTing cell.. 216 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.0602 -0.151 -0.2104 -0.1458 -0.2505 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 216"
[1] "ENDing cell.. 216 With feature... secondMajor"
[1] "STARTing cell.. 66 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.203 -0.197 -0.352 -0.21 -0.165 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 66"
[1] "ENDing cell.. 66 With feature... secondMajor"
[1] "STARTing cell.. 128 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.0186 0.2526 0.3046 0.2277 0.0312 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 128"
[1] "ENDing cell.. 128 With feature... secondMajor"
[1] "STARTing cell.. 50 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0652 -0.0249 -0.1645 0.0626 -0.1251 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 50"
[1] "ENDing cell.. 50 With feature... secondMajor"
[1] "STARTing cell.. 5 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.01 0.0996 -0.1427 -0.1181 -0.2715 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 5"
[1] "ENDing cell.. 5 With feature... secondMajor"
[1] "STARTing cell.. 26 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.03592 -0.00795 -0.11126 -0.12498 -0.11765 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 26"
[1] "ENDing cell.. 26 With feature... secondMajor"
[1] "STARTing cell.. 129 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0938 -0.1843 -0.1631 -0.0632 -0.073 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 129"
[1] "ENDing cell.. 129 With feature... secondMajor"
[1] "STARTing cell.. 67 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.04685 -0.05978 -0.00677 0.00988 0.03195 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 67"
[1] "ENDing cell.. 67 With feature... secondMajor"
[1] "STARTing cell.. 247 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.216 0.23 0.226 0.261 0.245 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 247"
[1] "ENDing cell.. 247 With feature... secondMajor"
[1] "STARTing cell.. 134 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.014 -0.149 -0.277 -0.283 -0.329 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 134"
[1] "ENDing cell.. 134 With feature... secondMajor"
[1] "STARTing cell.. 93 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.157 -0.24 -0.267 -0.361 -0.328 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 93"
[1] "ENDing cell.. 93 With feature... secondMajor"
[1] "STARTing cell.. 248 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0573 0.0366 0.1356 0.2369 0.329 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 248"
[1] "ENDing cell.. 248 With feature... secondMajor"
[1] "STARTing cell.. 157 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0468 -0.1422 -0.2752 -0.2594 -0.2326 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 157"
[1] "ENDing cell.. 157 With feature... secondMajor"
[1] "STARTing cell.. 46 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.4671 -0.3161 -0.2294 -0.1135 -0.0307 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 46"
[1] "ENDing cell.. 46 With feature... secondMajor"
[1] "STARTing cell.. 242 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.1432 0.0914 0.0342 0.126 0.1011 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 242"
[1] "ENDing cell.. 242 With feature... secondMajor"
[1] "STARTing cell.. 159 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.0227 -0.0657 -0.1218 -0.187 -0.1548 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 159"
[1] "ENDing cell.. 159 With feature... secondMajor"
[1] "STARTing cell.. 186 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.0577 0.0755 -0.1543 -0.4785 -0.1865 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 186"
[1] "ENDing cell.. 186 With feature... secondMajor"
[1] "STARTing cell.. 228 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.1429 -0.0402 -0.0588 -0.0779 -0.0501 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 228"
[1] "ENDing cell.. 228 With feature... secondMajor"
[1] "STARTing cell.. 160 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.1892 -0.1928 -0.3417 -0.2703 0.0729 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 160"
[1] "ENDing cell.. 160 With feature... secondMajor"
[1] "STARTing cell.. 279 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0969 -0.0468 0.1155 0.0516 -0.1571 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 279"
[1] "ENDing cell.. 279 With feature... secondMajor"
[1] "STARTing cell.. 53 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0748 -0.0281 -0.087 -0.1237 -0.0458 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 53"
[1] "ENDing cell.. 53 With feature... secondMajor"
[1] "STARTing cell.. 94 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.0423 0.0454 0.1093 0.2255 0.2294 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 94"
[1] "ENDing cell.. 94 With feature... secondMajor"
[1] "STARTing cell.. 121 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.1345 0.1556 -0.0598 -0.2667 0.0486 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 121"
[1] "ENDing cell.. 121 With feature... secondMajor"
[1] "STARTing cell.. 213 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.2476 -0.1361 -0.0926 0.0726 0.1388 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 213"
[1] "ENDing cell.. 213 With feature... secondMajor"
[1] "STARTing cell.. 109 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.202 -0.21 -0.223 -0.142 -0.25 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 109"
[1] "ENDing cell.. 109 With feature... secondMajor"
[1] "STARTing cell.. 110 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.2413 0.2286 0.1384 0.1369 -0.0977 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 110"
[1] "ENDing cell.. 110 With feature... secondMajor"
[1] "STARTing cell.. 101 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] -0.235 -0.0637 -0.0492 0.1018 0.0571 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 101"
[1] "ENDing cell.. 101 With feature... secondMajor"
[1] "STARTing cell.. 187 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.23411 0.23901 0.16121 0.09666 -0.00376 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 187"
[1] "ENDing cell.. 187 With feature... secondMajor"
[1] "STARTing cell.. 263 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.14787 0.07596 0.00847 -0.02792 -0.03518 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 263"
[1] "ENDing cell.. 263 With feature... secondMajor"
[1] "STARTing cell.. 218 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.02631 -0.07081 -0.02936 0.00629 -0.04442 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 218"
[1] "ENDing cell.. 218 With feature... secondMajor"
[1] "STARTing cell.. 19 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.267 0.159 0.176 0.16 0.183 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 19"
[1] "ENDing cell.. 19 With feature... secondMajor"
[1] "STARTing cell.. 20 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.1468 0.1789 0.1578 0.0899 -0.0327 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 20"
[1] "ENDing cell.. 20 With feature... secondMajor"
[1] "STARTing cell.. 224 With feature... secondMajor"
List of 6
$ acf : num [1:27, 1, 1] 0.1842 0.1902 0.2204 0.1241 0.0734 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 224"
[1] "ENDing cell.. 224 With feature... secondMajor"
[1] "STARTing cell.. 219 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.00374 -0.08391 -0.21435 -0.19708 -0.13781 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 219"
[1] "ENDing cell.. 219 With feature... Eccentricity"
[1] "STARTing cell.. 264 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.18561 0.10045 0.23363 0.00711 0.03771 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 264"
[1] "ENDing cell.. 264 With feature... Eccentricity"
[1] "STARTing cell.. 136 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.306 -0.282 -0.25 -0.218 -0.186 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 136"
[1] "ENDing cell.. 136 With feature... Eccentricity"
[1] "STARTing cell.. 54 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.429 -0.378 -0.277 -0.212 -0.084 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 54"
[1] "ENDing cell.. 54 With feature... Eccentricity"
[1] "STARTing cell.. 69 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.174 -0.24 -0.215 -0.226 -0.162 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 69"
[1] "ENDing cell.. 69 With feature... Eccentricity"
[1] "STARTing cell.. 111 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.166 -0.173 -0.229 -0.27 -0.209 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 111"
[1] "ENDing cell.. 111 With feature... Eccentricity"
[1] "STARTing cell.. 189 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.103 0.16 0.214 0.25 0.289 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 189"
[1] "ENDing cell.. 189 With feature... Eccentricity"
[1] "STARTing cell.. 171 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1495 -0.0934 -0.1267 0.0531 0.1657 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 171"
[1] "ENDing cell.. 171 With feature... Eccentricity"
[1] "STARTing cell.. 231 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.16236 -0.13285 -0.06532 0.00948 -0.0466 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 231"
[1] "ENDing cell.. 231 With feature... Eccentricity"
[1] "STARTing cell.. 205 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.2025 -0.195 -0.2031 -0.1124 0.0568 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 205"
[1] "ENDing cell.. 205 With feature... Eccentricity"
[1] "STARTing cell.. 244 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.13 -0.199 -0.262 -0.349 -0.362 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 244"
[1] "ENDing cell.. 244 With feature... Eccentricity"
[1] "STARTing cell.. 1 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.14 -0.178 -0.261 -0.336 -0.331 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 1"
[1] "ENDing cell.. 1 With feature... Eccentricity"
[1] "STARTing cell.. 36 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.192 0.156 0.152 0.159 0.119 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 36"
[1] "ENDing cell.. 36 With feature... Eccentricity"
[1] "STARTing cell.. 7 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.229 -0.204 -0.176 -0.165 -0.123 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 7"
[1] "ENDing cell.. 7 With feature... Eccentricity"
[1] "STARTing cell.. 102 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.093 0.167 0.131 0.163 0.188 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 102"
[1] "ENDing cell.. 102 With feature... Eccentricity"
[1] "STARTing cell.. 22 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.23994 -0.14303 -0.00608 0.13159 0.24348 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 22"
[1] "ENDing cell.. 22 With feature... Eccentricity"
[1] "STARTing cell.. 188 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.00474 0.02788 0.02326 -0.06757 0.07559 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 188"
[1] "ENDing cell.. 188 With feature... Eccentricity"
[1] "STARTing cell.. 55 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0721 -0.0464 0.0128 0.0983 0.1809 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 55"
[1] "ENDing cell.. 55 With feature... Eccentricity"
[1] "STARTing cell.. 243 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.375 -0.338 -0.287 -0.204 -0.208 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 243"
[1] "ENDing cell.. 243 With feature... Eccentricity"
[1] "STARTing cell.. 123 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.319 -0.12 -0.456 -0.431 -0.248 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 123"
[1] "ENDing cell.. 123 With feature... Eccentricity"
[1] "STARTing cell.. 21 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.399 -0.332 -0.295 -0.216 -0.141 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 21"
[1] "ENDing cell.. 21 With feature... Eccentricity"
[1] "STARTing cell.. 163 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0483 0.2084 0.1215 0.0982 0.0101 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 163"
[1] "ENDing cell.. 163 With feature... Eccentricity"
[1] "STARTing cell.. 112 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0136 0.0267 0.1647 0.2603 0.2986 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 112"
[1] "ENDing cell.. 112 With feature... Eccentricity"
[1] "STARTing cell.. 33 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.335 -0.396 -0.367 -0.416 -0.384 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 33"
[1] "ENDing cell.. 33 With feature... Eccentricity"
[1] "STARTing cell.. 172 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1617 -0.1237 -0.0701 -0.1047 -0.1742 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 172"
[1] "ENDing cell.. 172 With feature... Eccentricity"
[1] "STARTing cell.. 95 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.068724 -0.000869 0.087786 0.143943 0.230461 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 95"
[1] "ENDing cell.. 95 With feature... Eccentricity"
[1] "STARTing cell.. 30 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1324 -0.1556 -0.1226 -0.0421 0.2556 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 30"
[1] "ENDing cell.. 30 With feature... Eccentricity"
[1] "STARTing cell.. 203 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.1411 0.00647 -0.00201 0.16131 0.04858 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 203"
[1] "ENDing cell.. 203 With feature... Eccentricity"
[1] "STARTing cell.. 274 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0048 0.0645 0.0667 0.0794 0.0862 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 274"
[1] "ENDing cell.. 274 With feature... Eccentricity"
[1] "STARTing cell.. 131 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0802 0.1769 0.0696 0.1807 0.1768 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 131"
[1] "ENDing cell.. 131 With feature... Eccentricity"
[1] "STARTing cell.. 68 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0681 -0.0327 -0.0189 -0.0346 -0.0585 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 68"
[1] "ENDing cell.. 68 With feature... Eccentricity"
[1] "STARTing cell.. 71 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.139 0.149 0.148 0.148 0.119 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 71"
[1] "ENDing cell.. 71 With feature... Eccentricity"
[1] "STARTing cell.. 135 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.187 -0.198 -0.253 -0.314 -0.391 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 135"
[1] "ENDing cell.. 135 With feature... Eccentricity"
[1] "STARTing cell.. 84 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.1663 0.2061 0.1466 0.1044 0.0155 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 84"
[1] "ENDing cell.. 84 With feature... Eccentricity"
[1] "STARTing cell.. 206 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.394 0.456 0.484 0.537 0.527 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 206"
[1] "ENDing cell.. 206 With feature... Eccentricity"
[1] "STARTing cell.. 255 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0333 0.0964 0.0695 0.0621 0.0589 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 255"
[1] "ENDing cell.. 255 With feature... Eccentricity"
[1] "STARTing cell.. 64 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.1177 0.0802 0.2068 0.2358 0.146 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 64"
[1] "ENDing cell.. 64 With feature... Eccentricity"
[1] "STARTing cell.. 9 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0733 -0.0588 0.019 -0.1185 -0.0697 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 9"
[1] "ENDing cell.. 9 With feature... Eccentricity"
[1] "STARTing cell.. 122 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.661 -0.59 -0.5 -0.377 -0.167 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 122"
[1] "ENDing cell.. 122 With feature... Eccentricity"
[1] "STARTing cell.. 23 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.05467 0.03162 -0.01627 0.00396 -0.08719 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 23"
[1] "ENDing cell.. 23 With feature... Eccentricity"
[1] "STARTing cell.. 162 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1079 0.0709 0.1573 0.2592 0.3591 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 162"
[1] "ENDing cell.. 162 With feature... Eccentricity"
[1] "STARTing cell.. 229 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.04615 -0.01182 -0.00839 -0.04049 -0.16358 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 229"
[1] "ENDing cell.. 229 With feature... Eccentricity"
[1] "STARTing cell.. 57 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0835 -0.35 -0.408 -0.292 -0.3727 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 57"
[1] "ENDing cell.. 57 With feature... Eccentricity"
[1] "STARTing cell.. 249 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.15371 0.00481 0.14131 0.33256 0.3385 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 249"
[1] "ENDing cell.. 249 With feature... Eccentricity"
[1] "STARTing cell.. 125 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.06726 0.00577 0.02997 -0.03015 0.02401 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 125"
[1] "ENDing cell.. 125 With feature... Eccentricity"
[1] "STARTing cell.. 8 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.307 -0.203 -0.166 -0.172 -0.114 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 8"
[1] "ENDing cell.. 8 With feature... Eccentricity"
[1] "STARTing cell.. 165 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.08152 0.03133 0.00446 0.10762 0.04008 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 165"
[1] "ENDing cell.. 165 With feature... Eccentricity"
[1] "STARTing cell.. 83 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.106 -0.0771 -0.1253 -0.153 -0.1775 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 83"
[1] "ENDing cell.. 83 With feature... Eccentricity"
[1] "STARTing cell.. 113 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.18 -0.116 -0.237 -0.279 -0.16 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 113"
[1] "ENDing cell.. 113 With feature... Eccentricity"
[1] "STARTing cell.. 220 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1298 -0.1019 -0.0661 -0.0663 -0.0081 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 220"
[1] "ENDing cell.. 220 With feature... Eccentricity"
[1] "STARTing cell.. 174 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.125 0.226 0.3 0.439 0.416 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 174"
[1] "ENDing cell.. 174 With feature... Eccentricity"
[1] "STARTing cell.. 56 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.414 0.474 0.501 0.554 0.529 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 56"
[1] "ENDing cell.. 56 With feature... Eccentricity"
[1] "STARTing cell.. 173 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.12556 -0.01955 0.00716 0.11902 0.18737 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 173"
[1] "ENDing cell.. 173 With feature... Eccentricity"
[1] "STARTing cell.. 232 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1006 -0.0857 0.0445 0.0603 0.15 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 232"
[1] "ENDing cell.. 232 With feature... Eccentricity"
[1] "STARTing cell.. 37 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0602 -0.0525 -0.0555 -0.0619 -0.0267 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 37"
[1] "ENDing cell.. 37 With feature... Eccentricity"
[1] "STARTing cell.. 86 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.11 0.124 0.152 0.18 0.168 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 86"
[1] "ENDing cell.. 86 With feature... Eccentricity"
[1] "STARTing cell.. 103 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.08 -0.0503 -0.0204 0.0181 0.0532 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 103"
[1] "ENDing cell.. 103 With feature... Eccentricity"
[1] "STARTing cell.. 208 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.2333 -0.1467 -0.0758 -0.0226 0.0709 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 208"
[1] "ENDing cell.. 208 With feature... Eccentricity"
[1] "STARTing cell.. 190 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.181 0.224 0.344 0.348 0.449 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 190"
[1] "ENDing cell.. 190 With feature... Eccentricity"
[1] "STARTing cell.. 4 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.11027 -0.07844 0.00722 0.08525 0.1383 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 4"
[1] "ENDing cell.. 4 With feature... Eccentricity"
[1] "STARTing cell.. 238 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.16 0.225 0.189 0.193 0.209 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 238"
[1] "ENDing cell.. 238 With feature... Eccentricity"
[1] "STARTing cell.. 11 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0759 -0.2097 -0.1252 -0.1509 -0.0741 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 11"
[1] "ENDing cell.. 11 With feature... Eccentricity"
[1] "STARTing cell.. 29 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.177 -0.265 -0.293 -0.269 -0.29 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 29"
[1] "ENDing cell.. 29 With feature... Eccentricity"
[1] "STARTing cell.. 59 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1377 0.0189 0.0445 0.1154 0.332 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 59"
[1] "ENDing cell.. 59 With feature... Eccentricity"
[1] "STARTing cell.. 96 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.22395 0.20605 0.12099 0.00969 -0.04209 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 96"
[1] "ENDing cell.. 96 With feature... Eccentricity"
[1] "STARTing cell.. 204 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.503 0.53 0.51 0.506 0.404 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 204"
[1] "ENDing cell.. 204 With feature... Eccentricity"
[1] "STARTing cell.. 275 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.3347 -0.3036 -0.2455 -0.1718 -0.0712 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 275"
[1] "ENDing cell.. 275 With feature... Eccentricity"
[1] "STARTing cell.. 130 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.1012 0.1142 0.0963 0.2744 0.2033 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 130"
[1] "ENDing cell.. 130 With feature... Eccentricity"
[1] "STARTing cell.. 137 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.34 0.384 0.429 0.458 0.345 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 137"
[1] "ENDing cell.. 137 With feature... Eccentricity"
[1] "STARTing cell.. 140 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.2304 -0.1111 -0.0162 0.0648 0.2044 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 140"
[1] "ENDing cell.. 140 With feature... Eccentricity"
[1] "STARTing cell.. 226 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.417 0.446 0.462 0.37 0.228 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 226"
[1] "ENDing cell.. 226 With feature... Eccentricity"
[1] "STARTing cell.. 74 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.457 -0.288 -0.369 -0.207 -0.147 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 74"
[1] "ENDing cell.. 74 With feature... Eccentricity"
[1] "STARTing cell.. 256 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.259 -0.223 -0.179 -0.181 -0.152 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 256"
[1] "ENDing cell.. 256 With feature... Eccentricity"
[1] "STARTing cell.. 65 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.07978 -0.00842 0.00976 -0.01692 0.14796 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 65"
[1] "ENDing cell.. 65 With feature... Eccentricity"
[1] "STARTing cell.. 87 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0203 0.1953 0.1764 0.0931 0.0999 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 87"
[1] "ENDing cell.. 87 With feature... Eccentricity"
[1] "STARTing cell.. 124 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.091 -0.0783 -0.0723 -0.0531 -0.0322 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 124"
[1] "ENDing cell.. 124 With feature... Eccentricity"
[1] "STARTing cell.. 210 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.07548 0.00722 -0.01603 0.12564 0.17591 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 210"
[1] "ENDing cell.. 210 With feature... Eccentricity"
[1] "STARTing cell.. 164 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.02098 0.00534 0.08866 -0.03695 0.06399 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 164"
[1] "ENDing cell.. 164 With feature... Eccentricity"
[1] "STARTing cell.. 230 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.1896 0.1905 0.165 0.1485 0.0851 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 230"
[1] "ENDing cell.. 230 With feature... Eccentricity"
[1] "STARTing cell.. 13 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0811 0.048 0.0576 0.0132 0.0442 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 13"
[1] "ENDing cell.. 13 With feature... Eccentricity"
[1] "STARTing cell.. 250 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0986 -0.0323 -0.0287 0.0194 0.0376 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 250"
[1] "ENDing cell.. 250 With feature... Eccentricity"
[1] "STARTing cell.. 10 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.116 0.173 0.226 0.295 0.353 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 10"
[1] "ENDing cell.. 10 With feature... Eccentricity"
[1] "STARTing cell.. 85 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0333 -0.1315 -0.249 0.0449 -0.1255 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 85"
[1] "ENDing cell.. 85 With feature... Eccentricity"
[1] "STARTing cell.. 61 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.33 0.365 0.297 0.23 0.13 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 61"
[1] "ENDing cell.. 61 With feature... Eccentricity"
[1] "STARTing cell.. 221 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.507 -0.505 -0.552 -0.587 -0.474 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 221"
[1] "ENDing cell.. 221 With feature... Eccentricity"
[1] "STARTing cell.. 265 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0947 0.019 0.0589 0.1476 0.107 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 265"
[1] "ENDing cell.. 265 With feature... Eccentricity"
[1] "STARTing cell.. 58 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.275 -0.375 -0.435 -0.331 -0.272 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 58"
[1] "ENDing cell.. 58 With feature... Eccentricity"
[1] "STARTing cell.. 114 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1224 0.0447 -0.1016 -0.0319 0.0603 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 114"
[1] "ENDing cell.. 114 With feature... Eccentricity"
[1] "STARTing cell.. 233 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0111 0.1034 0.2 0.3522 0.4263 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 233"
[1] "ENDing cell.. 233 With feature... Eccentricity"
[1] "STARTing cell.. 246 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0221 0.0719 0.1822 0.3107 0.196 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 246"
[1] "ENDing cell.. 246 With feature... Eccentricity"
[1] "STARTing cell.. 104 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0457 -0.051 -0.0563 -0.0754 -0.0814 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 104"
[1] "ENDing cell.. 104 With feature... Eccentricity"
[1] "STARTing cell.. 76 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.459 0.521 0.596 0.662 0.653 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 76"
[1] "ENDing cell.. 76 With feature... Eccentricity"
[1] "STARTing cell.. 239 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.00682 -0.01419 -0.04842 0.0467 0.24485 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 239"
[1] "ENDing cell.. 239 With feature... Eccentricity"
[1] "STARTing cell.. 88 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.125 -0.232 -0.25 -0.327 -0.179 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 88"
[1] "ENDing cell.. 88 With feature... Eccentricity"
[1] "STARTing cell.. 211 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0228 0.0769 0.1509 0.2152 0.226 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 211"
[1] "ENDing cell.. 211 With feature... Eccentricity"
[1] "STARTing cell.. 24 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.393 0.356 0.29 0.289 0.245 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 24"
[1] "ENDing cell.. 24 With feature... Eccentricity"
[1] "STARTing cell.. 276 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.1191 0.0575 -0.0546 -0.0855 -0.1242 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 276"
[1] "ENDing cell.. 276 With feature... Eccentricity"
[1] "STARTing cell.. 115 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0943 -0.0843 -0.0408 0.0185 -0.0633 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 115"
[1] "ENDing cell.. 115 With feature... Eccentricity"
[1] "STARTing cell.. 132 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.399 0.391 0.438 0.479 0.532 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 132"
[1] "ENDing cell.. 132 With feature... Eccentricity"
[1] "STARTing cell.. 138 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0853 0.0121 -0.0593 -0.0666 -0.0732 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 138"
[1] "ENDing cell.. 138 With feature... Eccentricity"
[1] "STARTing cell.. 227 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.01346 0.00249 0.1021 0.05999 0.07677 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 227"
[1] "ENDing cell.. 227 With feature... Eccentricity"
[1] "STARTing cell.. 257 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.05143 0.001974 -0.089012 0.110256 -0.000353 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 257"
[1] "ENDing cell.. 257 With feature... Eccentricity"
[1] "STARTing cell.. 133 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.18 -0.209 -0.165 -0.145 -0.16 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 133"
[1] "ENDing cell.. 133 With feature... Eccentricity"
[1] "STARTing cell.. 126 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.2455 -0.154 -0.0683 0.0848 0.111 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 126"
[1] "ENDing cell.. 126 With feature... Eccentricity"
[1] "STARTing cell.. 78 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.136 0.1002 0.0447 0.0839 0.0807 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 78"
[1] "ENDing cell.. 78 With feature... Eccentricity"
[1] "STARTing cell.. 166 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.02394 -0.00404 -0.02979 -0.04443 0.03113 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 166"
[1] "ENDing cell.. 166 With feature... Eccentricity"
[1] "STARTing cell.. 195 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.157 0.235 0.267 0.285 0.326 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 195"
[1] "ENDing cell.. 195 With feature... Eccentricity"
[1] "STARTing cell.. 251 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.11895 -0.14022 -0.20089 -0.06813 -0.00684 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 251"
[1] "ENDing cell.. 251 With feature... Eccentricity"
[1] "STARTing cell.. 12 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.256 0.221 0.254 0.263 0.277 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 12"
[1] "ENDing cell.. 12 With feature... Eccentricity"
[1] "STARTing cell.. 222 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.12336 -0.00575 0.09201 0.16991 0.17188 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 222"
[1] "ENDing cell.. 222 With feature... Eccentricity"
[1] "STARTing cell.. 60 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.096 0.122 0.145 0.134 0.186 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 60"
[1] "ENDing cell.. 60 With feature... Eccentricity"
[1] "STARTing cell.. 63 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1348 -0.2253 -0.2015 -0.2573 -0.0712 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 63"
[1] "ENDing cell.. 63 With feature... Eccentricity"
[1] "STARTing cell.. 175 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0156 0.0263 0.0712 0.063 0.0876 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 175"
[1] "ENDing cell.. 175 With feature... Eccentricity"
[1] "STARTing cell.. 234 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.12894 0.07972 -0.00338 -0.05143 -0.10265 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 234"
[1] "ENDing cell.. 234 With feature... Eccentricity"
[1] "STARTing cell.. 192 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1 -0.126 -0.201 -0.142 -0.144 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 192"
[1] "ENDing cell.. 192 With feature... Eccentricity"
[1] "STARTing cell.. 240 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0599 -0.0772 -0.1002 0.048 -0.0358 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 240"
[1] "ENDing cell.. 240 With feature... Eccentricity"
[1] "STARTing cell.. 80 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.2157 0.2604 0.1898 0.0868 0.0626 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 80"
[1] "ENDing cell.. 80 With feature... Eccentricity"
[1] "STARTing cell.. 97 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0828 -0.1582 -0.1081 -0.3281 -0.4753 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 97"
[1] "ENDing cell.. 97 With feature... Eccentricity"
[1] "STARTing cell.. 207 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.01785 -0.07088 0.00219 0.0366 0.03424 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 207"
[1] "ENDing cell.. 207 With feature... Eccentricity"
[1] "STARTing cell.. 277 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1435 -0.0163 0.0561 -0.1361 -0.0734 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 277"
[1] "ENDing cell.. 277 With feature... Eccentricity"
[1] "STARTing cell.. 73 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.517 -0.513 -0.477 -0.458 -0.399 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 73"
[1] "ENDing cell.. 73 With feature... Eccentricity"
[1] "STARTing cell.. 139 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.1862 0.1415 0.0145 -0.0759 -0.1488 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 139"
[1] "ENDing cell.. 139 With feature... Eccentricity"
[1] "STARTing cell.. 258 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.229 -0.265 -0.205 -0.195 -0.156 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 258"
[1] "ENDing cell.. 258 With feature... Eccentricity"
[1] "STARTing cell.. 179 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0645 -0.1622 -0.2732 -0.2751 -0.249 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 179"
[1] "ENDing cell.. 179 With feature... Eccentricity"
[1] "STARTing cell.. 167 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1189 -0.019 0.0559 -0.00117 -0.03883 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 167"
[1] "ENDing cell.. 167 With feature... Eccentricity"
[1] "STARTing cell.. 252 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0215 -0.0433 -0.0373 -0.0575 -0.1673 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 252"
[1] "ENDing cell.. 252 With feature... Eccentricity"
[1] "STARTing cell.. 81 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0711 -0.117 -0.1439 -0.0486 -0.1258 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 81"
[1] "ENDing cell.. 81 With feature... Eccentricity"
[1] "STARTing cell.. 14 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.3028 -0.235 -0.168 -0.1437 -0.0978 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 14"
[1] "ENDing cell.. 14 With feature... Eccentricity"
[1] "STARTing cell.. 199 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1229 -0.0968 -0.1065 -0.1185 -0.1295 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 199"
[1] "ENDing cell.. 199 With feature... Eccentricity"
[1] "STARTing cell.. 266 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0896 -0.1177 -0.0739 -0.0436 0.0398 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 266"
[1] "ENDing cell.. 266 With feature... Eccentricity"
[1] "STARTing cell.. 116 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.138 0.197 0.127 0.161 0.207 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 116"
[1] "ENDing cell.. 116 With feature... Eccentricity"
[1] "STARTing cell.. 176 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0194 -0.0882 -0.0102 0.0831 -0.1177 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 176"
[1] "ENDing cell.. 176 With feature... Eccentricity"
[1] "STARTing cell.. 235 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0457 0.0666 0.0472 0.0233 -0.1376 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 235"
[1] "ENDing cell.. 235 With feature... Eccentricity"
[1] "STARTing cell.. 38 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.154 -0.104 -0.175 -0.201 -0.259 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 38"
[1] "ENDing cell.. 38 With feature... Eccentricity"
[1] "STARTing cell.. 105 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0644 -0.0551 -0.0334 -0.0237 -0.011 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 105"
[1] "ENDing cell.. 105 With feature... Eccentricity"
[1] "STARTing cell.. 193 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.293 -0.285 -0.239 -0.197 -0.27 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 193"
[1] "ENDing cell.. 193 With feature... Eccentricity"
[1] "STARTing cell.. 181 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.219 0.212 0.221 0.251 0.329 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 181"
[1] "ENDing cell.. 181 With feature... Eccentricity"
[1] "STARTing cell.. 28 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.305 -0.323 -0.285 -0.247 -0.259 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 28"
[1] "ENDing cell.. 28 With feature... Eccentricity"
[1] "STARTing cell.. 98 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.3248 0.2844 0.1461 0.0872 -0.0623 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 98"
[1] "ENDing cell.. 98 With feature... Eccentricity"
[1] "STARTing cell.. 200 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.034 0.0823 0.1361 0.2392 0.3139 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 200"
[1] "ENDing cell.. 200 With feature... Eccentricity"
[1] "STARTing cell.. 209 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.3239 -0.2547 -0.1868 -0.0936 0.0464 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 209"
[1] "ENDing cell.. 209 With feature... Eccentricity"
[1] "STARTing cell.. 278 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.325 0.387 0.386 0.391 0.413 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 278"
[1] "ENDing cell.. 278 With feature... Eccentricity"
[1] "STARTing cell.. 75 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.2672 -0.1634 -0.1712 -0.1074 -0.0366 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 75"
[1] "ENDing cell.. 75 With feature... Eccentricity"
[1] "STARTing cell.. 141 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0351 -0.0889 -0.1639 -0.1653 -0.2209 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 141"
[1] "ENDing cell.. 141 With feature... Eccentricity"
[1] "STARTing cell.. 259 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0029 -0.0261 -0.1835 -0.0222 -0.0278 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 259"
[1] "ENDing cell.. 259 With feature... Eccentricity"
[1] "STARTing cell.. 16 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0809 -0.0471 -0.0721 -0.1464 0.0281 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 16"
[1] "ENDing cell.. 16 With feature... Eccentricity"
[1] "STARTing cell.. 267 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.117 0.23 0.321 0.365 0.325 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 267"
[1] "ENDing cell.. 267 With feature... Eccentricity"
[1] "STARTing cell.. 201 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1126 -0.038 -0.1191 -0.0921 -0.172 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 201"
[1] "ENDing cell.. 201 With feature... Eccentricity"
[1] "STARTing cell.. 117 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.431 -0.361 -0.235 -0.171 -0.161 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 117"
[1] "ENDing cell.. 117 With feature... Eccentricity"
[1] "STARTing cell.. 177 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0186 0.0393 0.029 0.124 0.2452 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 177"
[1] "ENDing cell.. 177 With feature... Eccentricity"
[1] "STARTing cell.. 15 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.194 -0.1277 0.0124 0.1455 0.3138 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 15"
[1] "ENDing cell.. 15 With feature... Eccentricity"
[1] "STARTing cell.. 106 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1962 -0.1033 -0.0519 0.0904 0.2362 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 106"
[1] "ENDing cell.. 106 With feature... Eccentricity"
[1] "STARTing cell.. 194 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.303 0.26 0.236 0.248 0.228 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 194"
[1] "ENDing cell.. 194 With feature... Eccentricity"
[1] "STARTing cell.. 31 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.183 -0.255 -0.308 -0.359 -0.384 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 31"
[1] "ENDing cell.. 31 With feature... Eccentricity"
[1] "STARTing cell.. 77 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0903 -0.0892 -0.1327 -0.1091 -0.2265 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 77"
[1] "ENDing cell.. 77 With feature... Eccentricity"
[1] "STARTing cell.. 91 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1129 -0.0048 0.0395 0.0934 0.2552 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 91"
[1] "ENDing cell.. 91 With feature... Eccentricity"
[1] "STARTing cell.. 142 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0704 0.0889 0.0432 -0.0117 -0.0784 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 142"
[1] "ENDing cell.. 142 With feature... Eccentricity"
[1] "STARTing cell.. 17 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.161 -0.126 -0.145 -0.134 -0.114 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 17"
[1] "ENDing cell.. 17 With feature... Eccentricity"
[1] "STARTing cell.. 62 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.281 0.246 0.26 0.289 0.239 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 62"
[1] "ENDing cell.. 62 With feature... Eccentricity"
[1] "STARTing cell.. 168 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.304 -0.228 -0.232 -0.254 -0.199 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 168"
[1] "ENDing cell.. 168 With feature... Eccentricity"
[1] "STARTing cell.. 127 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.15783 0.14604 0.08506 0.00946 -0.11285 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 127"
[1] "ENDing cell.. 127 With feature... Eccentricity"
[1] "STARTing cell.. 253 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0426 0.0779 0.0557 0.1588 0.1522 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 253"
[1] "ENDing cell.. 253 With feature... Eccentricity"
[1] "STARTing cell.. 118 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.142 0.199 0.188 0.288 0.283 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 118"
[1] "ENDing cell.. 118 With feature... Eccentricity"
[1] "STARTing cell.. 39 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.012 0.0393 0.0846 0.0378 0.0147 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 39"
[1] "ENDing cell.. 39 With feature... Eccentricity"
[1] "STARTing cell.. 107 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.07772 -0.03756 -0.00722 0.00182 0.08521 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 107"
[1] "ENDing cell.. 107 With feature... Eccentricity"
[1] "STARTing cell.. 196 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1052 -0.0225 -0.1057 -0.0985 -0.1191 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 196"
[1] "ENDing cell.. 196 With feature... Eccentricity"
[1] "STARTing cell.. 212 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0292 -0.0173 -0.2039 -0.2385 -0.2728 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 212"
[1] "ENDing cell.. 212 With feature... Eccentricity"
[1] "STARTing cell.. 79 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0224 0.0958 0.152 0.2064 0.2443 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 79"
[1] "ENDing cell.. 79 With feature... Eccentricity"
[1] "STARTing cell.. 143 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.164 -0.139 -0.144 -0.128 -0.119 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 143"
[1] "ENDing cell.. 143 With feature... Eccentricity"
[1] "STARTing cell.. 92 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1849 -0.2974 -0.0378 -0.2009 -0.0857 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 92"
[1] "ENDing cell.. 92 With feature... Eccentricity"
[1] "STARTing cell.. 169 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0866 -0.1119 -0.0855 0.0441 0.1813 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 169"
[1] "ENDing cell.. 169 With feature... Eccentricity"
[1] "STARTing cell.. 254 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.012 0.0256 0.0248 0.0258 0.1086 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 254"
[1] "ENDing cell.. 254 With feature... Eccentricity"
[1] "STARTing cell.. 269 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.127 -0.303 -0.199 -0.196 -0.201 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 269"
[1] "ENDing cell.. 269 With feature... Eccentricity"
[1] "STARTing cell.. 119 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.4188 -0.3375 -0.2833 -0.1627 -0.0915 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 119"
[1] "ENDing cell.. 119 With feature... Eccentricity"
[1] "STARTing cell.. 180 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0936 0.1545 0.2449 0.0287 0.059 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 180"
[1] "ENDing cell.. 180 With feature... Eccentricity"
[1] "STARTing cell.. 151 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.226 0.297 0.285 0.404 0.457 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 151"
[1] "ENDing cell.. 151 With feature... Eccentricity"
[1] "STARTing cell.. 40 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.00642 -0.05936 -0.02629 -0.03607 -0.07753 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 40"
[1] "ENDing cell.. 40 With feature... Eccentricity"
[1] "STARTing cell.. 191 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0873 0.1758 0.2213 0.2296 0.2071 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 191"
[1] "ENDing cell.. 191 With feature... Eccentricity"
[1] "STARTing cell.. 108 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0754 -0.1506 -0.2189 -0.3516 -0.3725 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 108"
[1] "ENDing cell.. 108 With feature... Eccentricity"
[1] "STARTing cell.. 198 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0538 0.0766 -0.1115 -0.0712 -0.1034 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 198"
[1] "ENDing cell.. 198 With feature... Eccentricity"
[1] "STARTing cell.. 144 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0225 0.0293 0.1906 0.2387 0.1955 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 144"
[1] "ENDing cell.. 144 With feature... Eccentricity"
[1] "STARTing cell.. 170 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0582 -0.1593 -0.2305 -0.2826 -0.2748 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 170"
[1] "ENDing cell.. 170 With feature... Eccentricity"
[1] "STARTing cell.. 270 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0973 0.0573 0.0689 0.4285 0.341 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 270"
[1] "ENDing cell.. 270 With feature... Eccentricity"
[1] "STARTing cell.. 41 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.203 0.26 0.2 0.377 0.336 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 41"
[1] "ENDing cell.. 41 With feature... Eccentricity"
[1] "STARTing cell.. 154 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1473 -0.0394 -0.0324 -0.1114 -0.0605 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 154"
[1] "ENDing cell.. 154 With feature... Eccentricity"
[1] "STARTing cell.. 90 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0859 -0.0929 0.021 0.1592 0.0156 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 90"
[1] "ENDing cell.. 90 With feature... Eccentricity"
[1] "STARTing cell.. 145 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.152 -0.196 -0.265 -0.31 -0.343 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 145"
[1] "ENDing cell.. 145 With feature... Eccentricity"
[1] "STARTing cell.. 271 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0669 0.1542 0.1957 0.2601 0.2831 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 271"
[1] "ENDing cell.. 271 With feature... Eccentricity"
[1] "STARTing cell.. 183 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.00659 0.02156 -0.02785 -0.01849 0.09698 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 183"
[1] "ENDing cell.. 183 With feature... Eccentricity"
[1] "STARTing cell.. 147 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.111 0.072 0.0592 0.0973 0.1383 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 147"
[1] "ENDing cell.. 147 With feature... Eccentricity"
[1] "STARTing cell.. 178 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0259 -0.0867 -0.0831 -0.0791 -0.132 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 178"
[1] "ENDing cell.. 178 With feature... Eccentricity"
[1] "STARTing cell.. 272 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.11 0.112 0.184 0.141 0.123 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 272"
[1] "ENDing cell.. 272 With feature... Eccentricity"
[1] "STARTing cell.. 43 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.189 -0.158 -0.144 -0.109 -0.119 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 43"
[1] "ENDing cell.. 43 With feature... Eccentricity"
[1] "STARTing cell.. 99 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0983 0.1343 0.2009 0.3008 0.3828 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 99"
[1] "ENDing cell.. 99 With feature... Eccentricity"
[1] "STARTing cell.. 155 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0434 -0.1885 -0.0886 -0.1596 -0.2333 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 155"
[1] "ENDing cell.. 155 With feature... Eccentricity"
[1] "STARTing cell.. 148 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.202 0.181 0.201 0.153 0.152 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 148"
[1] "ENDing cell.. 148 With feature... Eccentricity"
[1] "STARTing cell.. 215 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1214 -0.0633 -0.0366 0.0175 0.0527 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 215"
[1] "ENDing cell.. 215 With feature... Eccentricity"
[1] "STARTing cell.. 149 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.2538 -0.0162 -0.1118 -0.0124 -0.1352 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 149"
[1] "ENDing cell.. 149 With feature... Eccentricity"
[1] "STARTing cell.. 89 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1078 -0.0489 0.0865 0.2035 0.2071 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 89"
[1] "ENDing cell.. 89 With feature... Eccentricity"
[1] "STARTing cell.. 156 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.006502 0.016128 0.100775 0.035751 0.000892 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 156"
[1] "ENDing cell.. 156 With feature... Eccentricity"
[1] "STARTing cell.. 150 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.214 0.2245 0.161 0.091 0.0651 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 150"
[1] "ENDing cell.. 150 With feature... Eccentricity"
[1] "STARTing cell.. 42 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.4015 -0.2693 -0.1999 -0.0441 -0.0076 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 42"
[1] "ENDing cell.. 42 With feature... Eccentricity"
[1] "STARTing cell.. 44 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0643 0.1453 0.2122 0.2128 0.1931 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 44"
[1] "ENDing cell.. 44 With feature... Eccentricity"
[1] "STARTing cell.. 100 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.04 0.0912 0.2226 0.0808 -0.1105 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 100"
[1] "ENDing cell.. 100 With feature... Eccentricity"
[1] "STARTing cell.. 153 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.338 0.42 0.406 0.441 0.449 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 153"
[1] "ENDing cell.. 153 With feature... Eccentricity"
[1] "STARTing cell.. 47 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.2564 -0.1576 -0.141 0.0439 0.0646 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 47"
[1] "ENDing cell.. 47 With feature... Eccentricity"
[1] "STARTing cell.. 202 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1103 -0.0936 -0.0777 -0.1113 0.0528 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 202"
[1] "ENDing cell.. 202 With feature... Eccentricity"
[1] "STARTing cell.. 51 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0713 0.3408 0.1909 0.2432 0.3347 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 51"
[1] "ENDing cell.. 51 With feature... Eccentricity"
[1] "STARTing cell.. 260 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.282 0.362 0.395 0.495 0.507 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 260"
[1] "ENDing cell.. 260 With feature... Eccentricity"
[1] "STARTing cell.. 217 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.249 0.27 0.283 0.2 0.127 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 217"
[1] "ENDing cell.. 217 With feature... Eccentricity"
[1] "STARTing cell.. 182 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.193 -0.187 -0.153 -0.225 -0.135 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 182"
[1] "ENDing cell.. 182 With feature... Eccentricity"
[1] "STARTing cell.. 184 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.00284 0.01721 0.0368 0.0658 0.07999 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 184"
[1] "ENDing cell.. 184 With feature... Eccentricity"
[1] "STARTing cell.. 45 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.3736 -0.3058 -0.1736 -0.0553 -0.0067 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 45"
[1] "ENDing cell.. 45 With feature... Eccentricity"
[1] "STARTing cell.. 241 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.127 0.128 0.112 0.185 0.18 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 241"
[1] "ENDing cell.. 241 With feature... Eccentricity"
[1] "STARTing cell.. 82 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.37 -0.332 -0.423 -0.356 -0.34 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 82"
[1] "ENDing cell.. 82 With feature... Eccentricity"
[1] "STARTing cell.. 261 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.01731 0.00451 -0.05584 -0.12281 -0.03402 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 261"
[1] "ENDing cell.. 261 With feature... Eccentricity"
[1] "STARTing cell.. 262 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0399 -0.1093 -0.0669 -0.0995 -0.0956 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 262"
[1] "ENDing cell.. 262 With feature... Eccentricity"
[1] "STARTing cell.. 216 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.245 0.262 0.372 0.191 0.258 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 216"
[1] "ENDing cell.. 216 With feature... Eccentricity"
[1] "STARTing cell.. 66 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0294 -0.0679 -0.2089 -0.1276 -0.3618 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 66"
[1] "ENDing cell.. 66 With feature... Eccentricity"
[1] "STARTing cell.. 128 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.049 0.0528 0.0209 0.0395 0.0309 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 128"
[1] "ENDing cell.. 128 With feature... Eccentricity"
[1] "STARTing cell.. 50 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0152 0.2282 0.1321 0.0579 0.1618 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 50"
[1] "ENDing cell.. 50 With feature... Eccentricity"
[1] "STARTing cell.. 5 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1038 -0.0647 0.0522 0.0832 0.1288 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 5"
[1] "ENDing cell.. 5 With feature... Eccentricity"
[1] "STARTing cell.. 26 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.1326 0.0641 -0.0849 -0.0683 0.038 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 26"
[1] "ENDing cell.. 26 With feature... Eccentricity"
[1] "STARTing cell.. 129 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.329 -0.305 -0.235 -0.181 -0.149 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 129"
[1] "ENDing cell.. 129 With feature... Eccentricity"
[1] "STARTing cell.. 67 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.142 -0.2 -0.161 -0.125 -0.255 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 67"
[1] "ENDing cell.. 67 With feature... Eccentricity"
[1] "STARTing cell.. 247 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0768 -0.0546 -0.028 -0.0813 -0.0647 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 247"
[1] "ENDing cell.. 247 With feature... Eccentricity"
[1] "STARTing cell.. 134 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0951 0.155 0.1962 0.273 0.3545 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 134"
[1] "ENDing cell.. 134 With feature... Eccentricity"
[1] "STARTing cell.. 93 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.1812 0.2788 0.2604 0.1458 0.0561 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 93"
[1] "ENDing cell.. 93 With feature... Eccentricity"
[1] "STARTing cell.. 248 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.08407 0.00913 0.02449 -0.09283 0.09524 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 248"
[1] "ENDing cell.. 248 With feature... Eccentricity"
[1] "STARTing cell.. 157 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.11696 -0.09128 -0.00597 0.04673 0.0153 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 157"
[1] "ENDing cell.. 157 With feature... Eccentricity"
[1] "STARTing cell.. 46 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.171 0.291 0.42 0.471 0.523 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 46"
[1] "ENDing cell.. 46 With feature... Eccentricity"
[1] "STARTing cell.. 242 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0216 0.2406 0.4036 0.3558 0.3372 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 242"
[1] "ENDing cell.. 242 With feature... Eccentricity"
[1] "STARTing cell.. 159 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0613 0.0899 0.1187 0.1966 0.0829 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 159"
[1] "ENDing cell.. 159 With feature... Eccentricity"
[1] "STARTing cell.. 186 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0362 0.2758 -0.2003 -0.1994 -0.2233 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 186"
[1] "ENDing cell.. 186 With feature... Eccentricity"
[1] "STARTing cell.. 228 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.241 -0.448 -0.43 -0.452 -0.477 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 228"
[1] "ENDing cell.. 228 With feature... Eccentricity"
[1] "STARTing cell.. 160 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.526 -0.509 -0.438 -0.462 -0.355 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 160"
[1] "ENDing cell.. 160 With feature... Eccentricity"
[1] "STARTing cell.. 279 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.05991 -0.00455 0.06594 0.20864 0.18059 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 279"
[1] "ENDing cell.. 279 With feature... Eccentricity"
[1] "STARTing cell.. 53 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.104 0.26 0.111 0.109 -0.101 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 53"
[1] "ENDing cell.. 53 With feature... Eccentricity"
[1] "STARTing cell.. 94 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0804 0.1395 0.0643 0.0602 0.0138 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 94"
[1] "ENDing cell.. 94 With feature... Eccentricity"
[1] "STARTing cell.. 121 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.00285 0.089 0.14265 0.12424 0.20161 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 121"
[1] "ENDing cell.. 121 With feature... Eccentricity"
[1] "STARTing cell.. 213 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.289 0.307 0.363 0.415 0.576 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 213"
[1] "ENDing cell.. 213 With feature... Eccentricity"
[1] "STARTing cell.. 109 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1614 -0.1982 -0.2754 -0.1269 -0.0455 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 109"
[1] "ENDing cell.. 109 With feature... Eccentricity"
[1] "STARTing cell.. 110 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0742 0.0691 0.1512 0.1183 0.2291 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 110"
[1] "ENDing cell.. 110 With feature... Eccentricity"
[1] "STARTing cell.. 101 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0662 0.1249 0.1892 0.031 -0.1472 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 101"
[1] "ENDing cell.. 101 With feature... Eccentricity"
[1] "STARTing cell.. 187 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.168 -0.276 -0.413 -0.419 -0.428 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 187"
[1] "ENDing cell.. 187 With feature... Eccentricity"
[1] "STARTing cell.. 263 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.128 0.119 0.228 0.206 0.206 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 263"
[1] "ENDing cell.. 263 With feature... Eccentricity"
[1] "STARTing cell.. 218 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.35759 -0.29088 -0.15758 -0.00205 0.05813 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 218"
[1] "ENDing cell.. 218 With feature... Eccentricity"
[1] "STARTing cell.. 19 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.00131 0.10072 0.0262 -0.04459 0.03774 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 19"
[1] "ENDing cell.. 19 With feature... Eccentricity"
[1] "STARTing cell.. 20 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.1131 0.1301 0.0753 -0.0496 -0.0373 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 20"
[1] "ENDing cell.. 20 With feature... Eccentricity"
[1] "STARTing cell.. 224 With feature... Eccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.2719 0.1588 -0.0597 -0.2604 -0.491 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 224"
[1] "ENDing cell.. 224 With feature... Eccentricity"
[1] "STARTing cell.. 219 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.185 0.26 0.291 0.349 0.416 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 219"
[1] "ENDing cell.. 219 With feature... secondEccentricity"
[1] "STARTing cell.. 264 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.172 -0.07 0.199 0.178 -0.12 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 264"
[1] "ENDing cell.. 264 With feature... secondEccentricity"
[1] "STARTing cell.. 136 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0215 0.1323 0.2201 0.4661 0.4885 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 136"
[1] "ENDing cell.. 136 With feature... secondEccentricity"
[1] "STARTing cell.. 54 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.575 -0.512 -0.402 -0.239 -0.105 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 54"
[1] "ENDing cell.. 54 With feature... secondEccentricity"
[1] "STARTing cell.. 69 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0541 -0.0906 0.0174 0.0402 0.1389 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 69"
[1] "ENDing cell.. 69 With feature... secondEccentricity"
[1] "STARTing cell.. 111 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.303 -0.275 -0.3 -0.316 -0.222 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 111"
[1] "ENDing cell.. 111 With feature... secondEccentricity"
[1] "STARTing cell.. 189 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.299 0.309 0.315 0.292 0.289 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 189"
[1] "ENDing cell.. 189 With feature... secondEccentricity"
[1] "STARTing cell.. 171 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.327 -0.264 -0.238 -0.181 -0.149 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 171"
[1] "ENDing cell.. 171 With feature... secondEccentricity"
[1] "STARTing cell.. 231 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1003 0.0526 0.0371 0.2059 0.0934 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 231"
[1] "ENDing cell.. 231 With feature... secondEccentricity"
[1] "STARTing cell.. 205 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.034 -0.0336 -0.0467 -0.037 0.0381 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 205"
[1] "ENDing cell.. 205 With feature... secondEccentricity"
[1] "STARTing cell.. 244 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.267 -0.3 -0.379 -0.431 -0.395 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 244"
[1] "ENDing cell.. 244 With feature... secondEccentricity"
[1] "STARTing cell.. 1 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0229 -0.01474 -0.02816 -0.0123 0.00622 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 1"
[1] "ENDing cell.. 1 With feature... secondEccentricity"
[1] "STARTing cell.. 36 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0573 -0.0958 -0.0481 0.0494 0.0712 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 36"
[1] "ENDing cell.. 36 With feature... secondEccentricity"
[1] "STARTing cell.. 7 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0685 -0.0114 -0.1034 -0.019 -0.1225 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 7"
[1] "ENDing cell.. 7 With feature... secondEccentricity"
[1] "STARTing cell.. 102 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.202 0.321 0.233 0.273 0.288 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 102"
[1] "ENDing cell.. 102 With feature... secondEccentricity"
[1] "STARTing cell.. 22 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.235 0.298 0.291 0.416 0.388 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 22"
[1] "ENDing cell.. 22 With feature... secondEccentricity"
[1] "STARTing cell.. 188 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.1554 0.119 0.0961 0.0918 0.0362 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 188"
[1] "ENDing cell.. 188 With feature... secondEccentricity"
[1] "STARTing cell.. 55 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.111 0.144 0.218 0.218 0.248 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 55"
[1] "ENDing cell.. 55 With feature... secondEccentricity"
[1] "STARTing cell.. 243 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0423 0.0567 0.0794 0.1144 0.1539 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 243"
[1] "ENDing cell.. 243 With feature... secondEccentricity"
[1] "STARTing cell.. 123 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0834 -0.0545 -0.2293 -0.2154 -0.2063 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 123"
[1] "ENDing cell.. 123 With feature... secondEccentricity"
[1] "STARTing cell.. 21 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0176 0.0377 0.0921 0.1402 0.1973 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 21"
[1] "ENDing cell.. 21 With feature... secondEccentricity"
[1] "STARTing cell.. 163 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.166 0.1312 0.0915 0.0913 0.0845 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 163"
[1] "ENDing cell.. 163 With feature... secondEccentricity"
[1] "STARTing cell.. 112 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1186 -0.0133 0.0784 0.097 0.1126 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 112"
[1] "ENDing cell.. 112 With feature... secondEccentricity"
[1] "STARTing cell.. 33 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.34 -0.415 -0.459 -0.507 -0.581 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 33"
[1] "ENDing cell.. 33 With feature... secondEccentricity"
[1] "STARTing cell.. 172 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.345 0.314 0.313 0.281 0.246 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 172"
[1] "ENDing cell.. 172 With feature... secondEccentricity"
[1] "STARTing cell.. 95 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.2026 -0.1502 -0.1224 -0.0747 -0.0231 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 95"
[1] "ENDing cell.. 95 With feature... secondEccentricity"
[1] "STARTing cell.. 30 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.01747 -0.00219 -0.01682 0.09159 0.09319 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 30"
[1] "ENDing cell.. 30 With feature... secondEccentricity"
[1] "STARTing cell.. 203 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1229 0.0106 0.0797 0.0555 0.16 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 203"
[1] "ENDing cell.. 203 With feature... secondEccentricity"
[1] "STARTing cell.. 274 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.1053 0.0633 0.1004 0.1126 0.1728 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 274"
[1] "ENDing cell.. 274 With feature... secondEccentricity"
[1] "STARTing cell.. 131 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0606 0.1417 -0.0766 0.1887 0.1396 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 131"
[1] "ENDing cell.. 131 With feature... secondEccentricity"
[1] "STARTing cell.. 68 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0779 -0.0332 -0.016 -0.0171 -0.0118 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 68"
[1] "ENDing cell.. 68 With feature... secondEccentricity"
[1] "STARTing cell.. 71 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.225 0.157 0.117 0.103 -0.04 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 71"
[1] "ENDing cell.. 71 With feature... secondEccentricity"
[1] "STARTing cell.. 135 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.3242 0.3115 0.1872 0.0955 0.1466 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 135"
[1] "ENDing cell.. 135 With feature... secondEccentricity"
[1] "STARTing cell.. 84 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.137 -0.176 -0.281 -0.291 -0.243 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 84"
[1] "ENDing cell.. 84 With feature... secondEccentricity"
[1] "STARTing cell.. 206 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.167 0.1531 0.1241 0.0635 0.0599 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 206"
[1] "ENDing cell.. 206 With feature... secondEccentricity"
[1] "STARTing cell.. 255 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.454 0.398 0.394 0.365 0.437 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 255"
[1] "ENDing cell.. 255 With feature... secondEccentricity"
[1] "STARTing cell.. 64 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0973 0.0788 0.2205 0.1973 -0.044 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 64"
[1] "ENDing cell.. 64 With feature... secondEccentricity"
[1] "STARTing cell.. 9 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.084499 -0.02694 0.076353 0.000877 0.189964 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 9"
[1] "ENDing cell.. 9 With feature... secondEccentricity"
[1] "STARTing cell.. 122 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.3583 -0.3342 -0.2377 -0.0801 -0.0194 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 122"
[1] "ENDing cell.. 122 With feature... secondEccentricity"
[1] "STARTing cell.. 23 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1732 -0.0417 -0.0573 -0.0074 0.0479 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 23"
[1] "ENDing cell.. 23 With feature... secondEccentricity"
[1] "STARTing cell.. 162 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.339 -0.306 -0.255 -0.185 -0.131 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 162"
[1] "ENDing cell.. 162 With feature... secondEccentricity"
[1] "STARTing cell.. 229 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.065 -0.0393 0.0024 0.0541 0.0674 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 229"
[1] "ENDing cell.. 229 With feature... secondEccentricity"
[1] "STARTing cell.. 57 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0235 -0.1362 -0.0672 -0.0931 -0.0551 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 57"
[1] "ENDing cell.. 57 With feature... secondEccentricity"
[1] "STARTing cell.. 249 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1904 -0.0407 0.1712 0.1854 0.2998 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 249"
[1] "ENDing cell.. 249 With feature... secondEccentricity"
[1] "STARTing cell.. 125 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.151 0.145 0.106 0.128 0.225 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 125"
[1] "ENDing cell.. 125 With feature... secondEccentricity"
[1] "STARTing cell.. 8 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.00394 -0.08735 -0.22067 -0.26575 -0.3167 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 8"
[1] "ENDing cell.. 8 With feature... secondEccentricity"
[1] "STARTing cell.. 165 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.392 0.353 0.33 0.29 0.277 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 165"
[1] "ENDing cell.. 165 With feature... secondEccentricity"
[1] "STARTing cell.. 83 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.08811 0.00624 -0.01217 -0.07898 -0.10463 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 83"
[1] "ENDing cell.. 83 With feature... secondEccentricity"
[1] "STARTing cell.. 113 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0492 -0.0502 -0.1919 -0.1172 -0.018 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 113"
[1] "ENDing cell.. 113 With feature... secondEccentricity"
[1] "STARTing cell.. 220 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.2303 -0.1493 -0.1727 -0.1046 -0.0452 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 220"
[1] "ENDing cell.. 220 With feature... secondEccentricity"
[1] "STARTing cell.. 174 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0186 0.0341 0.0964 0.1868 0.2502 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 174"
[1] "ENDing cell.. 174 With feature... secondEccentricity"
[1] "STARTing cell.. 56 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.22 0.203 0.263 0.35 0.455 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 56"
[1] "ENDing cell.. 56 With feature... secondEccentricity"
[1] "STARTing cell.. 173 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.388 -0.329 -0.356 -0.29 -0.184 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 173"
[1] "ENDing cell.. 173 With feature... secondEccentricity"
[1] "STARTing cell.. 232 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1196 -0.0871 0.0626 0.1271 0.1549 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 232"
[1] "ENDing cell.. 232 With feature... secondEccentricity"
[1] "STARTing cell.. 37 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.115 0.167 0.293 0.204 0.165 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 37"
[1] "ENDing cell.. 37 With feature... secondEccentricity"
[1] "STARTing cell.. 86 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.289 0.327 0.403 0.444 0.389 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 86"
[1] "ENDing cell.. 86 With feature... secondEccentricity"
[1] "STARTing cell.. 103 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.03572 -0.02758 -0.00532 0.01177 0.03142 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 103"
[1] "ENDing cell.. 103 With feature... secondEccentricity"
[1] "STARTing cell.. 208 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.311 -0.251 -0.242 -0.246 -0.149 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 208"
[1] "ENDing cell.. 208 With feature... secondEccentricity"
[1] "STARTing cell.. 190 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0647 -0.0319 0.0809 0.0693 0.1584 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 190"
[1] "ENDing cell.. 190 With feature... secondEccentricity"
[1] "STARTing cell.. 4 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.12666 -0.12946 -0.09969 -0.15171 -0.00976 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 4"
[1] "ENDing cell.. 4 With feature... secondEccentricity"
[1] "STARTing cell.. 238 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.186 0.194 0.239 0.276 0.225 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 238"
[1] "ENDing cell.. 238 With feature... secondEccentricity"
[1] "STARTing cell.. 11 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.1205 0.0346 -0.0351 0.0726 -0.0163 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 11"
[1] "ENDing cell.. 11 With feature... secondEccentricity"
[1] "STARTing cell.. 29 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.285 -0.335 -0.329 -0.326 -0.297 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 29"
[1] "ENDing cell.. 29 With feature... secondEccentricity"
[1] "STARTing cell.. 59 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.344 0.611 0.52 0.526 0.376 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 59"
[1] "ENDing cell.. 59 With feature... secondEccentricity"
[1] "STARTing cell.. 96 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 9.05e-02 8.30e-02 3.50e-02 1.43e-06 -7.09e-02 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 96"
[1] "ENDing cell.. 96 With feature... secondEccentricity"
[1] "STARTing cell.. 204 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.159 -0.166 -0.263 -0.258 -0.342 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 204"
[1] "ENDing cell.. 204 With feature... secondEccentricity"
[1] "STARTing cell.. 275 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.477 -0.499 -0.415 -0.357 -0.206 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 275"
[1] "ENDing cell.. 275 With feature... secondEccentricity"
[1] "STARTing cell.. 130 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.558 0.412 0.417 0.437 0.369 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 130"
[1] "ENDing cell.. 130 With feature... secondEccentricity"
[1] "STARTing cell.. 137 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.335 -0.29 -0.22 -0.162 -0.207 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 137"
[1] "ENDing cell.. 137 With feature... secondEccentricity"
[1] "STARTing cell.. 140 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.137 -0.0692 0.0535 0.1891 0.1778 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 140"
[1] "ENDing cell.. 140 With feature... secondEccentricity"
[1] "STARTing cell.. 226 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.505 0.595 0.594 0.588 0.498 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 226"
[1] "ENDing cell.. 226 With feature... secondEccentricity"
[1] "STARTing cell.. 74 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.535 -0.366 -0.373 -0.27 -0.171 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 74"
[1] "ENDing cell.. 74 With feature... secondEccentricity"
[1] "STARTing cell.. 256 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.226 -0.181 -0.1214 -0.1143 -0.0827 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 256"
[1] "ENDing cell.. 256 With feature... secondEccentricity"
[1] "STARTing cell.. 65 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.04884 -0.00402 -0.03441 -0.03758 0.13763 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 65"
[1] "ENDing cell.. 65 With feature... secondEccentricity"
[1] "STARTing cell.. 87 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.01839 -0.00678 -0.07124 -0.04344 0.05967 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 87"
[1] "ENDing cell.. 87 With feature... secondEccentricity"
[1] "STARTing cell.. 124 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.1548 0.0449 -0.0909 -0.2321 -0.2651 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 124"
[1] "ENDing cell.. 124 With feature... secondEccentricity"
[1] "STARTing cell.. 210 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.2336 -0.0384 0.0221 -0.1553 -0.1164 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 210"
[1] "ENDing cell.. 210 With feature... secondEccentricity"
[1] "STARTing cell.. 164 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1475 -0.1411 -0.1202 -0.1383 -0.0246 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 164"
[1] "ENDing cell.. 164 With feature... secondEccentricity"
[1] "STARTing cell.. 230 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.1086 0.0737 0.0468 0.0691 0.0218 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 230"
[1] "ENDing cell.. 230 With feature... secondEccentricity"
[1] "STARTing cell.. 13 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0445 -0.0588 -0.0344 -0.0246 -0.044 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 13"
[1] "ENDing cell.. 13 With feature... secondEccentricity"
[1] "STARTing cell.. 250 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0482 -0.0404 -0.2099 -0.1615 -0.2472 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 250"
[1] "ENDing cell.. 250 With feature... secondEccentricity"
[1] "STARTing cell.. 10 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.123 0.141 0.165 0.295 0.193 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 10"
[1] "ENDing cell.. 10 With feature... secondEccentricity"
[1] "STARTing cell.. 85 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.05197 0.00904 -0.1604 -0.18909 -0.2019 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 85"
[1] "ENDing cell.. 85 With feature... secondEccentricity"
[1] "STARTing cell.. 61 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.348 0.344 0.249 0.2 0.139 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 61"
[1] "ENDing cell.. 61 With feature... secondEccentricity"
[1] "STARTing cell.. 221 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.402 0.401 0.42 0.446 0.41 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 221"
[1] "ENDing cell.. 221 With feature... secondEccentricity"
[1] "STARTing cell.. 265 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.151 0.121 0.135 0.151 0.139 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 265"
[1] "ENDing cell.. 265 With feature... secondEccentricity"
[1] "STARTing cell.. 58 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.346 -0.433 -0.501 -0.442 -0.516 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 58"
[1] "ENDing cell.. 58 With feature... secondEccentricity"
[1] "STARTing cell.. 114 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0486 0.1092 0.0227 0.1437 0.1057 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 114"
[1] "ENDing cell.. 114 With feature... secondEccentricity"
[1] "STARTing cell.. 233 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.157 0.218 0.277 0.296 0.348 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 233"
[1] "ENDing cell.. 233 With feature... secondEccentricity"
[1] "STARTing cell.. 246 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0596 -0.1144 0.013 0.2453 0.123 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 246"
[1] "ENDing cell.. 246 With feature... secondEccentricity"
[1] "STARTing cell.. 104 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.159 -0.268 -0.306 -0.352 -0.388 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 104"
[1] "ENDing cell.. 104 With feature... secondEccentricity"
[1] "STARTing cell.. 76 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.122 0.198 0.211 0.179 0.198 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 76"
[1] "ENDing cell.. 76 With feature... secondEccentricity"
[1] "STARTing cell.. 239 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.138 -0.201 -0.231 -0.29 -0.255 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 239"
[1] "ENDing cell.. 239 With feature... secondEccentricity"
[1] "STARTing cell.. 88 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.2358 0.0704 0.0896 0.0522 0.0827 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 88"
[1] "ENDing cell.. 88 With feature... secondEccentricity"
[1] "STARTing cell.. 211 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1165 -0.0988 -0.0992 -0.0163 0.0754 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 211"
[1] "ENDing cell.. 211 With feature... secondEccentricity"
[1] "STARTing cell.. 24 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.248 -0.252 -0.188 -0.222 -0.154 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 24"
[1] "ENDing cell.. 24 With feature... secondEccentricity"
[1] "STARTing cell.. 276 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.167 0.164 0.201 0.21 0.291 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 276"
[1] "ENDing cell.. 276 With feature... secondEccentricity"
[1] "STARTing cell.. 115 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 3.38e-02 6.03e-03 -2.88e-02 -9.22e-05 -7.95e-02 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 115"
[1] "ENDing cell.. 115 With feature... secondEccentricity"
[1] "STARTing cell.. 132 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.519 0.497 0.491 0.508 0.477 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 132"
[1] "ENDing cell.. 132 With feature... secondEccentricity"
[1] "STARTing cell.. 138 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0346 -0.0754 -0.08 -0.1144 -0.1054 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 138"
[1] "ENDing cell.. 138 With feature... secondEccentricity"
[1] "STARTing cell.. 227 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0894 0.0659 0.172 0.1438 0.099 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 227"
[1] "ENDing cell.. 227 With feature... secondEccentricity"
[1] "STARTing cell.. 257 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.00818 -0.06651 -0.09334 -0.15363 -0.07668 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 257"
[1] "ENDing cell.. 257 With feature... secondEccentricity"
[1] "STARTing cell.. 133 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.319 0.234 0.275 0.353 0.381 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 133"
[1] "ENDing cell.. 133 With feature... secondEccentricity"
[1] "STARTing cell.. 126 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.15598 0.00844 0.03139 0.10044 0.20149 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 126"
[1] "ENDing cell.. 126 With feature... secondEccentricity"
[1] "STARTing cell.. 78 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.07349 0.05377 -0.00902 -0.07812 -0.18047 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 78"
[1] "ENDing cell.. 78 With feature... secondEccentricity"
[1] "STARTing cell.. 166 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.206 -0.191 -0.194 -0.181 -0.172 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 166"
[1] "ENDing cell.. 166 With feature... secondEccentricity"
[1] "STARTing cell.. 195 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.276 0.277 0.303 0.232 0.196 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 195"
[1] "ENDing cell.. 195 With feature... secondEccentricity"
[1] "STARTing cell.. 251 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0105 0.0535 0.1464 0.1812 0.3778 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 251"
[1] "ENDing cell.. 251 With feature... secondEccentricity"
[1] "STARTing cell.. 12 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.169 0.167 0.278 0.246 0.342 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 12"
[1] "ENDing cell.. 12 With feature... secondEccentricity"
[1] "STARTing cell.. 222 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.158 0.248 0.26 0.205 0.178 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 222"
[1] "ENDing cell.. 222 With feature... secondEccentricity"
[1] "STARTing cell.. 60 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0476 0.0886 0.0458 0.0289 0.0333 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 60"
[1] "ENDing cell.. 60 With feature... secondEccentricity"
[1] "STARTing cell.. 63 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.02489 -0.05141 -0.00088 -0.01297 0.07605 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 63"
[1] "ENDing cell.. 63 With feature... secondEccentricity"
[1] "STARTing cell.. 175 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.09032 -0.01006 0.14133 -0.00863 0.15854 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 175"
[1] "ENDing cell.. 175 With feature... secondEccentricity"
[1] "STARTing cell.. 234 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.334 0.373 0.413 0.44 0.467 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 234"
[1] "ENDing cell.. 234 With feature... secondEccentricity"
[1] "STARTing cell.. 192 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1686 -0.1882 -0.163 -0.0504 -0.069 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 192"
[1] "ENDing cell.. 192 With feature... secondEccentricity"
[1] "STARTing cell.. 240 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.01868 0.00779 -0.0057 -0.03421 -0.09933 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 240"
[1] "ENDing cell.. 240 With feature... secondEccentricity"
[1] "STARTing cell.. 80 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.27 -0.256 -0.287 -0.171 -0.124 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 80"
[1] "ENDing cell.. 80 With feature... secondEccentricity"
[1] "STARTing cell.. 97 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.336 0.325 0.264 0.126 -0.185 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 97"
[1] "ENDing cell.. 97 With feature... secondEccentricity"
[1] "STARTing cell.. 207 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.294 0.358 0.405 0.449 0.508 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 207"
[1] "ENDing cell.. 207 With feature... secondEccentricity"
[1] "STARTing cell.. 277 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.00109 -0.14444 -0.18489 -0.20913 -0.31794 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 277"
[1] "ENDing cell.. 277 With feature... secondEccentricity"
[1] "STARTing cell.. 73 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.295 -0.306 -0.35 -0.472 -0.446 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 73"
[1] "ENDing cell.. 73 With feature... secondEccentricity"
[1] "STARTing cell.. 139 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.13023 0.15891 0.05511 0.00675 -0.06177 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 139"
[1] "ENDing cell.. 139 With feature... secondEccentricity"
[1] "STARTing cell.. 258 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.227 0.261 0.232 0.328 0.3 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 258"
[1] "ENDing cell.. 258 With feature... secondEccentricity"
[1] "STARTing cell.. 179 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.542 0.451 0.412 0.411 0.413 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 179"
[1] "ENDing cell.. 179 With feature... secondEccentricity"
[1] "STARTing cell.. 167 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.08575 -0.00328 0.14878 0.24446 0.27288 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 167"
[1] "ENDing cell.. 167 With feature... secondEccentricity"
[1] "STARTing cell.. 252 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.3 -0.248 -0.24 -0.273 -0.225 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 252"
[1] "ENDing cell.. 252 With feature... secondEccentricity"
[1] "STARTing cell.. 81 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0334 0.0815 0.0914 0.0836 0.3123 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 81"
[1] "ENDing cell.. 81 With feature... secondEccentricity"
[1] "STARTing cell.. 14 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.192 -0.167 -0.12 -0.159 -0.229 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 14"
[1] "ENDing cell.. 14 With feature... secondEccentricity"
[1] "STARTing cell.. 199 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.00727 -0.07543 -0.24496 0.02082 -0.08392 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 199"
[1] "ENDing cell.. 199 With feature... secondEccentricity"
[1] "STARTing cell.. 266 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0257 0.0342 0.0865 0.1724 0.2114 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 266"
[1] "ENDing cell.. 266 With feature... secondEccentricity"
[1] "STARTing cell.. 116 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.3495 0.3508 0.2519 0.0538 0.2271 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 116"
[1] "ENDing cell.. 116 With feature... secondEccentricity"
[1] "STARTing cell.. 176 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.305 0.3 0.345 0.43 0.435 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 176"
[1] "ENDing cell.. 176 With feature... secondEccentricity"
[1] "STARTing cell.. 235 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0388 0.0222 0.0739 0.0958 0.0573 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 235"
[1] "ENDing cell.. 235 With feature... secondEccentricity"
[1] "STARTing cell.. 38 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.1074 0.1286 0.125 0.1443 0.0925 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 38"
[1] "ENDing cell.. 38 With feature... secondEccentricity"
[1] "STARTing cell.. 105 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.261 0.258 0.292 0.376 0.354 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 105"
[1] "ENDing cell.. 105 With feature... secondEccentricity"
[1] "STARTing cell.. 193 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.232 -0.186 -0.127 -0.128 -0.163 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 193"
[1] "ENDing cell.. 193 With feature... secondEccentricity"
[1] "STARTing cell.. 181 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0647 0.0382 0.0335 0.0168 0.1476 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 181"
[1] "ENDing cell.. 181 With feature... secondEccentricity"
[1] "STARTing cell.. 28 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.133 0.161 0.208 0.249 0.283 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 28"
[1] "ENDing cell.. 28 With feature... secondEccentricity"
[1] "STARTing cell.. 98 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0538 -0.008 -0.0746 -0.05 -0.1423 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 98"
[1] "ENDing cell.. 98 With feature... secondEccentricity"
[1] "STARTing cell.. 200 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0786 -0.0311 -0.0931 0.0708 -0.0344 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 200"
[1] "ENDing cell.. 200 With feature... secondEccentricity"
[1] "STARTing cell.. 209 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.2528 -0.167 -0.099 -0.0232 0.0879 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 209"
[1] "ENDing cell.. 209 With feature... secondEccentricity"
[1] "STARTing cell.. 278 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.272 0.2423 0.2046 0.1072 0.0835 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 278"
[1] "ENDing cell.. 278 With feature... secondEccentricity"
[1] "STARTing cell.. 75 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.608 -0.366 -0.41 -0.308 -0.286 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 75"
[1] "ENDing cell.. 75 With feature... secondEccentricity"
[1] "STARTing cell.. 141 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.04295 0.09786 0.03531 -0.00663 -0.04426 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 141"
[1] "ENDing cell.. 141 With feature... secondEccentricity"
[1] "STARTing cell.. 259 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.039542 -0.126829 -0.01349 -0.034693 -0.000824 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 259"
[1] "ENDing cell.. 259 With feature... secondEccentricity"
[1] "STARTing cell.. 16 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.109 0.14 0.134 0.169 0.21 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 16"
[1] "ENDing cell.. 16 With feature... secondEccentricity"
[1] "STARTing cell.. 267 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.183 0.239 0.283 0.329 0.34 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 267"
[1] "ENDing cell.. 267 With feature... secondEccentricity"
[1] "STARTing cell.. 201 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.27021 0.07685 0.00418 0.09162 0.045 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 201"
[1] "ENDing cell.. 201 With feature... secondEccentricity"
[1] "STARTing cell.. 117 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1829 -0.1882 -0.1912 -0.1823 -0.0527 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 117"
[1] "ENDing cell.. 117 With feature... secondEccentricity"
[1] "STARTing cell.. 177 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0968 -0.04 -0.0392 0.0362 0.1155 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 177"
[1] "ENDing cell.. 177 With feature... secondEccentricity"
[1] "STARTing cell.. 15 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.526 -0.543 -0.514 -0.402 -0.286 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 15"
[1] "ENDing cell.. 15 With feature... secondEccentricity"
[1] "STARTing cell.. 106 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.3255 -0.2602 -0.2704 -0.1364 -0.0117 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 106"
[1] "ENDing cell.. 106 With feature... secondEccentricity"
[1] "STARTing cell.. 194 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.1044 0.0961 0.1274 0.1993 0.2255 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 194"
[1] "ENDing cell.. 194 With feature... secondEccentricity"
[1] "STARTing cell.. 31 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.192 -0.28 -0.325 -0.376 -0.426 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 31"
[1] "ENDing cell.. 31 With feature... secondEccentricity"
[1] "STARTing cell.. 77 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.259 -0.259 -0.215 -0.192 -0.156 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 77"
[1] "ENDing cell.. 77 With feature... secondEccentricity"
[1] "STARTing cell.. 91 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.038 0.0621 0.0714 0.1345 0.3465 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 91"
[1] "ENDing cell.. 91 With feature... secondEccentricity"
[1] "STARTing cell.. 142 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.022 -0.0145 0.0373 0.1284 0.2308 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 142"
[1] "ENDing cell.. 142 With feature... secondEccentricity"
[1] "STARTing cell.. 17 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1029 -0.1243 -0.0735 -0.0112 0.0729 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 17"
[1] "ENDing cell.. 17 With feature... secondEccentricity"
[1] "STARTing cell.. 62 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0682 -0.1103 -0.1385 -0.2308 -0.3176 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 62"
[1] "ENDing cell.. 62 With feature... secondEccentricity"
[1] "STARTing cell.. 168 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.2616 -0.1598 -0.1783 -0.1096 -0.0188 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 168"
[1] "ENDing cell.. 168 With feature... secondEccentricity"
[1] "STARTing cell.. 127 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.1878 0.1694 0.0935 0.0221 -0.0649 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 127"
[1] "ENDing cell.. 127 With feature... secondEccentricity"
[1] "STARTing cell.. 253 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0544 -0.0398 -0.0798 -0.0122 -0.055 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 253"
[1] "ENDing cell.. 253 With feature... secondEccentricity"
[1] "STARTing cell.. 118 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0986 0.1224 0.1662 0.2257 0.1374 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 118"
[1] "ENDing cell.. 118 With feature... secondEccentricity"
[1] "STARTing cell.. 39 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0482 -0.1096 -0.0597 -0.1412 -0.1675 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 39"
[1] "ENDing cell.. 39 With feature... secondEccentricity"
[1] "STARTing cell.. 107 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.292 0.491 0.487 0.608 0.562 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 107"
[1] "ENDing cell.. 107 With feature... secondEccentricity"
[1] "STARTing cell.. 196 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.04275 0.07982 0.00626 -0.06891 -0.08809 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 196"
[1] "ENDing cell.. 196 With feature... secondEccentricity"
[1] "STARTing cell.. 212 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.299 -0.388 -0.441 -0.49 -0.496 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 212"
[1] "ENDing cell.. 212 With feature... secondEccentricity"
[1] "STARTing cell.. 79 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.144 0.1002 0.0188 -0.0938 -0.0703 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 79"
[1] "ENDing cell.. 79 With feature... secondEccentricity"
[1] "STARTing cell.. 143 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.138 -0.114 -0.161 -0.149 -0.133 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 143"
[1] "ENDing cell.. 143 With feature... secondEccentricity"
[1] "STARTing cell.. 92 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.21247 -0.20078 -0.00547 0.07449 0.09206 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 92"
[1] "ENDing cell.. 92 With feature... secondEccentricity"
[1] "STARTing cell.. 169 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.406 -0.408 -0.396 -0.512 -0.435 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 169"
[1] "ENDing cell.. 169 With feature... secondEccentricity"
[1] "STARTing cell.. 254 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.1361 0.0131 -0.1923 -0.0168 0.226 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 254"
[1] "ENDing cell.. 254 With feature... secondEccentricity"
[1] "STARTing cell.. 269 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0828 -0.1313 -0.1842 -0.1971 -0.2179 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 269"
[1] "ENDing cell.. 269 With feature... secondEccentricity"
[1] "STARTing cell.. 119 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.519 -0.438 -0.44 -0.409 -0.392 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 119"
[1] "ENDing cell.. 119 With feature... secondEccentricity"
[1] "STARTing cell.. 180 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.356 0.17 0.223 0.155 0.09 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 180"
[1] "ENDing cell.. 180 With feature... secondEccentricity"
[1] "STARTing cell.. 151 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0847 0.091 -0.1678 0.1597 0.1953 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 151"
[1] "ENDing cell.. 151 With feature... secondEccentricity"
[1] "STARTing cell.. 40 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.255 -0.251 -0.235 -0.237 -0.285 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 40"
[1] "ENDing cell.. 40 With feature... secondEccentricity"
[1] "STARTing cell.. 191 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.188 -0.153 -0.152 -0.15 -0.122 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 191"
[1] "ENDing cell.. 191 With feature... secondEccentricity"
[1] "STARTing cell.. 108 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0301 -0.0696 -0.0719 -0.1397 -0.1565 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 108"
[1] "ENDing cell.. 108 With feature... secondEccentricity"
[1] "STARTing cell.. 198 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0115 0.1844 -0.2547 -0.0342 -0.1194 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 198"
[1] "ENDing cell.. 198 With feature... secondEccentricity"
[1] "STARTing cell.. 144 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.5 0.627 0.61 0.531 0.525 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 144"
[1] "ENDing cell.. 144 With feature... secondEccentricity"
[1] "STARTing cell.. 170 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0636 0.0522 -0.0248 -0.0746 -0.064 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 170"
[1] "ENDing cell.. 170 With feature... secondEccentricity"
[1] "STARTing cell.. 270 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.03327 0.01769 0.00424 0.18004 -0.12277 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 270"
[1] "ENDing cell.. 270 With feature... secondEccentricity"
[1] "STARTing cell.. 41 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.2747 -0.2415 -0.1592 -0.0265 0.0789 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 41"
[1] "ENDing cell.. 41 With feature... secondEccentricity"
[1] "STARTing cell.. 154 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.136 0.128 0.231 0.179 0.27 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 154"
[1] "ENDing cell.. 154 With feature... secondEccentricity"
[1] "STARTing cell.. 90 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.104 0.0741 -0.0463 0.2078 -0.0472 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 90"
[1] "ENDing cell.. 90 With feature... secondEccentricity"
[1] "STARTing cell.. 145 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.423 -0.426 -0.481 -0.522 -0.517 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 145"
[1] "ENDing cell.. 145 With feature... secondEccentricity"
[1] "STARTing cell.. 271 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.389 -0.39 -0.378 -0.352 -0.327 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 271"
[1] "ENDing cell.. 271 With feature... secondEccentricity"
[1] "STARTing cell.. 183 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0645 -0.0828 -0.1247 -0.0719 -0.0103 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 183"
[1] "ENDing cell.. 183 With feature... secondEccentricity"
[1] "STARTing cell.. 147 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.189 -0.1712 -0.1406 -0.0985 -0.0759 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 147"
[1] "ENDing cell.. 147 With feature... secondEccentricity"
[1] "STARTing cell.. 178 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0312 -0.0706 -0.0792 -0.1029 -0.0509 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 178"
[1] "ENDing cell.. 178 With feature... secondEccentricity"
[1] "STARTing cell.. 272 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.1219 0.0941 0.1158 0.042 0.0265 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 272"
[1] "ENDing cell.. 272 With feature... secondEccentricity"
[1] "STARTing cell.. 43 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.613 -0.593 -0.544 -0.501 -0.484 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 43"
[1] "ENDing cell.. 43 With feature... secondEccentricity"
[1] "STARTing cell.. 99 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.315 -0.352 -0.27 -0.15 0.049 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 99"
[1] "ENDing cell.. 99 With feature... secondEccentricity"
[1] "STARTing cell.. 155 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.2381 0.00274 0.04276 -0.08703 -0.19512 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 155"
[1] "ENDing cell.. 155 With feature... secondEccentricity"
[1] "STARTing cell.. 148 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.315 0.217 0.274 0.323 0.139 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 148"
[1] "ENDing cell.. 148 With feature... secondEccentricity"
[1] "STARTing cell.. 215 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.3706 -0.2847 -0.2087 -0.1203 -0.0202 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 215"
[1] "ENDing cell.. 215 With feature... secondEccentricity"
[1] "STARTing cell.. 149 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.205 0.301 0.214 0.211 0.116 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 149"
[1] "ENDing cell.. 149 With feature... secondEccentricity"
[1] "STARTing cell.. 89 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.1007 0.1256 0.0135 -0.1213 -0.2394 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 89"
[1] "ENDing cell.. 89 With feature... secondEccentricity"
[1] "STARTing cell.. 156 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0376 0.0207 -0.0663 -0.0102 -0.0831 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 156"
[1] "ENDing cell.. 156 With feature... secondEccentricity"
[1] "STARTing cell.. 150 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.131 -0.153 -0.178 -0.263 -0.294 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 150"
[1] "ENDing cell.. 150 With feature... secondEccentricity"
[1] "STARTing cell.. 42 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.12 -0.0698 -0.0243 0.0554 0.2086 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 42"
[1] "ENDing cell.. 42 With feature... secondEccentricity"
[1] "STARTing cell.. 44 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.209 -0.226 -0.245 -0.254 -0.211 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 44"
[1] "ENDing cell.. 44 With feature... secondEccentricity"
[1] "STARTing cell.. 100 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0194 0.1175 0.1523 0.1689 0.1045 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 100"
[1] "ENDing cell.. 100 With feature... secondEccentricity"
[1] "STARTing cell.. 153 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.16293 -0.08146 0.00595 0.09943 0.15987 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 153"
[1] "ENDing cell.. 153 With feature... secondEccentricity"
[1] "STARTing cell.. 47 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.08124 0.00759 -0.10376 -0.17282 0.01242 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 47"
[1] "ENDing cell.. 47 With feature... secondEccentricity"
[1] "STARTing cell.. 202 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.1126 -0.0486 -0.0383 -0.1139 -0.026 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 202"
[1] "ENDing cell.. 202 With feature... secondEccentricity"
[1] "STARTing cell.. 51 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1711 -0.1007 0.0779 0.1002 0.1017 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 51"
[1] "ENDing cell.. 51 With feature... secondEccentricity"
[1] "STARTing cell.. 260 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0902 0.1797 0.2476 0.38 0.3854 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 260"
[1] "ENDing cell.. 260 With feature... secondEccentricity"
[1] "STARTing cell.. 217 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.316 0.389 0.479 0.398 0.29 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 217"
[1] "ENDing cell.. 217 With feature... secondEccentricity"
[1] "STARTing cell.. 182 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0213 -0.0795 0.1616 0.0951 0.2609 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 182"
[1] "ENDing cell.. 182 With feature... secondEccentricity"
[1] "STARTing cell.. 184 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1203 -0.0831 -0.0405 -0.0085 0.0782 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 184"
[1] "ENDing cell.. 184 With feature... secondEccentricity"
[1] "STARTing cell.. 45 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0467 0.0113 0.0503 0.1086 0.0815 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 45"
[1] "ENDing cell.. 45 With feature... secondEccentricity"
[1] "STARTing cell.. 241 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.1499 0.0274 -0.031 -0.0485 -0.0509 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 241"
[1] "ENDing cell.. 241 With feature... secondEccentricity"
[1] "STARTing cell.. 82 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.01958 0.00983 -0.17964 -0.08125 -0.34423 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 82"
[1] "ENDing cell.. 82 With feature... secondEccentricity"
[1] "STARTing cell.. 261 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.011 0.0238 -0.0918 -0.1122 0.1269 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 261"
[1] "ENDing cell.. 261 With feature... secondEccentricity"
[1] "STARTing cell.. 262 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.201 -0.259 -0.255 -0.248 -0.194 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 262"
[1] "ENDing cell.. 262 With feature... secondEccentricity"
[1] "STARTing cell.. 216 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.1061 0.1354 0.1955 0.0619 0.2058 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 216"
[1] "ENDing cell.. 216 With feature... secondEccentricity"
[1] "STARTing cell.. 66 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.00117 -0.10699 -0.42728 -0.1602 -0.2067 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 66"
[1] "ENDing cell.. 66 With feature... secondEccentricity"
[1] "STARTing cell.. 128 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0384 0.0752 0.1659 0.1219 0.1678 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 128"
[1] "ENDing cell.. 128 With feature... secondEccentricity"
[1] "STARTing cell.. 50 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.1213 -0.114 -0.021 0.0795 0.0184 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 50"
[1] "ENDing cell.. 50 With feature... secondEccentricity"
[1] "STARTing cell.. 5 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.08927 0.00107 -0.17521 -0.0221 -0.05953 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 5"
[1] "ENDing cell.. 5 With feature... secondEccentricity"
[1] "STARTing cell.. 26 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.02086 0.02786 -0.00494 -0.04735 0.01609 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 26"
[1] "ENDing cell.. 26 With feature... secondEccentricity"
[1] "STARTing cell.. 129 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.3831 -0.3719 -0.2687 -0.1074 -0.0199 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 129"
[1] "ENDing cell.. 129 With feature... secondEccentricity"
[1] "STARTing cell.. 67 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.329 -0.318 -0.26 -0.27 -0.239 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 67"
[1] "ENDing cell.. 67 With feature... secondEccentricity"
[1] "STARTing cell.. 247 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0665 0.0831 -0.0467 -0.0359 0.0397 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 247"
[1] "ENDing cell.. 247 With feature... secondEccentricity"
[1] "STARTing cell.. 134 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.2517 -0.2732 -0.2339 -0.2022 -0.0535 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 134"
[1] "ENDing cell.. 134 With feature... secondEccentricity"
[1] "STARTing cell.. 93 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.111 0.146 0.328 0.286 0.302 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 93"
[1] "ENDing cell.. 93 With feature... secondEccentricity"
[1] "STARTing cell.. 248 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1711 0.0916 0.0873 0.323 0.2906 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 248"
[1] "ENDing cell.. 248 With feature... secondEccentricity"
[1] "STARTing cell.. 157 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.13 -0.09 -0.289 -0.136 -0.186 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 157"
[1] "ENDing cell.. 157 With feature... secondEccentricity"
[1] "STARTing cell.. 46 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.2345 -0.0752 0.0242 0.029 0.1322 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 46"
[1] "ENDing cell.. 46 With feature... secondEccentricity"
[1] "STARTing cell.. 242 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.118 0.204 0.312 0.359 0.474 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 242"
[1] "ENDing cell.. 242 With feature... secondEccentricity"
[1] "STARTing cell.. 159 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.1253 0.055 0.0463 -0.0734 -0.1632 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 159"
[1] "ENDing cell.. 159 With feature... secondEccentricity"
[1] "STARTing cell.. 186 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0818 0.04873 0.19907 -0.00655 0.06573 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 186"
[1] "ENDing cell.. 186 With feature... secondEccentricity"
[1] "STARTing cell.. 228 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.219 -0.421 -0.487 -0.512 -0.523 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 228"
[1] "ENDing cell.. 228 With feature... secondEccentricity"
[1] "STARTing cell.. 160 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.107 -0.233 -0.386 -0.473 -0.207 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 160"
[1] "ENDing cell.. 160 With feature... secondEccentricity"
[1] "STARTing cell.. 279 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.1104 0.0671 0.1038 0.2457 0.0808 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 279"
[1] "ENDing cell.. 279 With feature... secondEccentricity"
[1] "STARTing cell.. 53 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.06751 0.15339 0.19707 0.01386 -0.00567 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 53"
[1] "ENDing cell.. 53 With feature... secondEccentricity"
[1] "STARTing cell.. 94 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.183 -0.167 -0.189 -0.172 -0.15 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 94"
[1] "ENDing cell.. 94 With feature... secondEccentricity"
[1] "STARTing cell.. 121 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.1245 0.0593 -0.1958 -0.3233 0.0589 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 121"
[1] "ENDing cell.. 121 With feature... secondEccentricity"
[1] "STARTing cell.. 213 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0461 -0.1579 -0.2332 -0.0601 0.0113 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 213"
[1] "ENDing cell.. 213 With feature... secondEccentricity"
[1] "STARTing cell.. 109 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.0692 0.0503 0.0935 0.1114 0.0372 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 109"
[1] "ENDing cell.. 109 With feature... secondEccentricity"
[1] "STARTing cell.. 110 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.0016 0.2237 0.0938 0.2029 0.1958 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 110"
[1] "ENDing cell.. 110 With feature... secondEccentricity"
[1] "STARTing cell.. 101 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.00302 0.25023 0.19501 0.40793 0.21946 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 101"
[1] "ENDing cell.. 101 With feature... secondEccentricity"
[1] "STARTing cell.. 187 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.1697 -0.2961 -0.2777 -0.1237 0.0647 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 187"
[1] "ENDing cell.. 187 With feature... secondEccentricity"
[1] "STARTing cell.. 263 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.203 0.284 0.454 0.379 0.4 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 263"
[1] "ENDing cell.. 263 With feature... secondEccentricity"
[1] "STARTing cell.. 218 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.118 -0.132 -0.146 -0.136 -0.147 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 218"
[1] "ENDing cell.. 218 With feature... secondEccentricity"
[1] "STARTing cell.. 19 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] -0.2424 -0.1918 -0.1135 -0.0987 -0.0435 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 19"
[1] "ENDing cell.. 19 With feature... secondEccentricity"
[1] "STARTing cell.. 20 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.02104 -0.00306 -0.14165 -0.02583 -0.15001 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 20"
[1] "ENDing cell.. 20 With feature... secondEccentricity"
[1] "STARTing cell.. 224 With feature... secondEccentricity"
List of 6
$ acf : num [1:27, 1, 1] 0.2338 0.1307 0.038 -0.0872 -0.2053 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 224"
[1] "ENDing cell.. 224 With feature... secondEccentricity"
[1] "STARTing cell.. 219 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.36 0.326 0.336 0.327 0.219 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 219"
[1] "ENDing cell.. 219 With feature... Sphericity"
[1] "STARTing cell.. 264 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.193 0.18 0.227 0.28 0.369 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 264"
[1] "ENDing cell.. 264 With feature... Sphericity"
[1] "STARTing cell.. 136 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0649 0.0599 0.1555 0.2288 0.3015 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 136"
[1] "ENDing cell.. 136 With feature... Sphericity"
[1] "STARTing cell.. 54 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0729 -0.1578 -0.1376 -0.1308 -0.0423 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 54"
[1] "ENDing cell.. 54 With feature... Sphericity"
[1] "STARTing cell.. 69 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.2304 0.2226 0.0872 0.1303 0.0787 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 69"
[1] "ENDing cell.. 69 With feature... Sphericity"
[1] "STARTing cell.. 111 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.2342 0.1275 0.0642 0.056 0.0266 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 111"
[1] "ENDing cell.. 111 With feature... Sphericity"
[1] "STARTing cell.. 189 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.181 0.173 0.169 0.191 0.205 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 189"
[1] "ENDing cell.. 189 With feature... Sphericity"
[1] "STARTing cell.. 171 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.183 0.144 0.135 0.198 0.24 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 171"
[1] "ENDing cell.. 171 With feature... Sphericity"
[1] "STARTing cell.. 231 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.09884 -0.00962 -0.06877 -0.0255 0.08834 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 231"
[1] "ENDing cell.. 231 With feature... Sphericity"
[1] "STARTing cell.. 205 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.02745 0.11919 0.00927 0.0644 0.29787 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 205"
[1] "ENDing cell.. 205 With feature... Sphericity"
[1] "STARTing cell.. 244 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.246 -0.259 -0.232 -0.303 -0.362 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 244"
[1] "ENDing cell.. 244 With feature... Sphericity"
[1] "STARTing cell.. 1 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.322 0.268 0.339 0.308 0.171 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 1"
[1] "ENDing cell.. 1 With feature... Sphericity"
[1] "STARTing cell.. 36 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.155 -0.256 -0.371 -0.443 -0.46 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 36"
[1] "ENDing cell.. 36 With feature... Sphericity"
[1] "STARTing cell.. 7 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.03288 0.06719 0.03912 0.00846 -0.03222 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 7"
[1] "ENDing cell.. 7 With feature... Sphericity"
[1] "STARTing cell.. 102 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.285 0.226 0.155 0.175 0.196 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 102"
[1] "ENDing cell.. 102 With feature... Sphericity"
[1] "STARTing cell.. 22 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.255 0.303 0.367 0.326 0.384 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 22"
[1] "ENDing cell.. 22 With feature... Sphericity"
[1] "STARTing cell.. 188 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0825 -0.0903 -0.1283 -0.0962 -0.0552 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 188"
[1] "ENDing cell.. 188 With feature... Sphericity"
[1] "STARTing cell.. 55 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.1004 0.1323 0.0418 0.0867 0.1224 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 55"
[1] "ENDing cell.. 55 With feature... Sphericity"
[1] "STARTing cell.. 243 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.1561 -0.2594 -0.0919 -0.1745 -0.1848 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 243"
[1] "ENDing cell.. 243 With feature... Sphericity"
[1] "STARTing cell.. 123 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.028 0.0244 -0.1028 0.0689 0.1234 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 123"
[1] "ENDing cell.. 123 With feature... Sphericity"
[1] "STARTing cell.. 21 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.542 -0.432 -0.287 -0.214 -0.113 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 21"
[1] "ENDing cell.. 21 With feature... Sphericity"
[1] "STARTing cell.. 163 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.2917 -0.1617 -0.2342 -0.0647 -0.1039 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 163"
[1] "ENDing cell.. 163 With feature... Sphericity"
[1] "STARTing cell.. 112 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.1148 -0.0285 -0.0167 -0.0797 -0.0447 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 112"
[1] "ENDing cell.. 112 With feature... Sphericity"
[1] "STARTing cell.. 33 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.2 -0.102 -0.14 -0.253 -0.226 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 33"
[1] "ENDing cell.. 33 With feature... Sphericity"
[1] "STARTing cell.. 172 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.16 0.0904 -0.1022 -0.3005 -0.4188 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 172"
[1] "ENDing cell.. 172 With feature... Sphericity"
[1] "STARTing cell.. 95 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.1334 0.2881 0.0586 0.0574 -0.1661 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 95"
[1] "ENDing cell.. 95 With feature... Sphericity"
[1] "STARTing cell.. 30 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.2321 0.2651 0.0485 -0.0993 -0.308 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 30"
[1] "ENDing cell.. 30 With feature... Sphericity"
[1] "STARTing cell.. 203 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0115 -0.1763 -0.0599 -0.0635 -0.1127 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 203"
[1] "ENDing cell.. 203 With feature... Sphericity"
[1] "STARTing cell.. 274 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.01816 0.00275 -0.00752 -0.08716 -0.0479 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 274"
[1] "ENDing cell.. 274 With feature... Sphericity"
[1] "STARTing cell.. 131 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.3411 0.0585 0.0609 -0.0473 -0.0757 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 131"
[1] "ENDing cell.. 131 With feature... Sphericity"
[1] "STARTing cell.. 68 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0544 -0.1892 -0.0942 -0.1425 -0.1137 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 68"
[1] "ENDing cell.. 68 With feature... Sphericity"
[1] "STARTing cell.. 71 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0196 -0.0373 -0.0789 -0.0191 -0.1529 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 71"
[1] "ENDing cell.. 71 With feature... Sphericity"
[1] "STARTing cell.. 135 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.129 -0.173 -0.175 -0.173 -0.173 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 135"
[1] "ENDing cell.. 135 With feature... Sphericity"
[1] "STARTing cell.. 84 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.1971 -0.1627 -0.044 0.0011 0.1211 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 84"
[1] "ENDing cell.. 84 With feature... Sphericity"
[1] "STARTing cell.. 206 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.197 0.153 0.211 0.262 0.266 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 206"
[1] "ENDing cell.. 206 With feature... Sphericity"
[1] "STARTing cell.. 255 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.1065 0.0808 0.0527 0.0498 0.0474 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 255"
[1] "ENDing cell.. 255 With feature... Sphericity"
[1] "STARTing cell.. 64 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.1271 0.171 -0.1302 0.0651 0.0398 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 64"
[1] "ENDing cell.. 64 With feature... Sphericity"
[1] "STARTing cell.. 9 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.114686 -0.209061 -0.148752 0.02889 0.000171 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 9"
[1] "ENDing cell.. 9 With feature... Sphericity"
[1] "STARTing cell.. 122 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.231 -0.134 0.163 0.215 0.282 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 122"
[1] "ENDing cell.. 122 With feature... Sphericity"
[1] "STARTing cell.. 23 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.00637 -0.04556 -0.06845 -0.11824 -0.19121 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 23"
[1] "ENDing cell.. 23 With feature... Sphericity"
[1] "STARTing cell.. 162 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.1093 -0.095 -0.0981 -0.1978 -0.2222 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 162"
[1] "ENDing cell.. 162 With feature... Sphericity"
[1] "STARTing cell.. 229 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.1068 0.0669 0.0693 -0.0119 0.0197 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 229"
[1] "ENDing cell.. 229 With feature... Sphericity"
[1] "STARTing cell.. 57 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.03763 0.07823 0.12755 0.03926 -0.00651 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 57"
[1] "ENDing cell.. 57 With feature... Sphericity"
[1] "STARTing cell.. 249 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.15 -0.217 0.17 0.223 0.217 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 249"
[1] "ENDing cell.. 249 With feature... Sphericity"
[1] "STARTing cell.. 125 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.1175 -0.0948 -0.0839 -0.1642 0.0471 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 125"
[1] "ENDing cell.. 125 With feature... Sphericity"
[1] "STARTing cell.. 8 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0982 0.1579 0.1289 0.1692 0.1357 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 8"
[1] "ENDing cell.. 8 With feature... Sphericity"
[1] "STARTing cell.. 165 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.102 0.201 0.11 0.319 0.424 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 165"
[1] "ENDing cell.. 165 With feature... Sphericity"
[1] "STARTing cell.. 83 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.00413 0.07898 0.03088 0.06615 0.1051 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 83"
[1] "ENDing cell.. 83 With feature... Sphericity"
[1] "STARTing cell.. 113 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0294 0.1422 -0.0391 -0.0664 0.1073 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 113"
[1] "ENDing cell.. 113 With feature... Sphericity"
[1] "STARTing cell.. 220 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.113 -0.155 -0.0728 -0.1115 -0.2586 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 220"
[1] "ENDing cell.. 220 With feature... Sphericity"
[1] "STARTing cell.. 174 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.218 0.257 0.319 0.401 0.432 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 174"
[1] "ENDing cell.. 174 With feature... Sphericity"
[1] "STARTing cell.. 56 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.064 0.0999 0.1042 0.0185 -0.049 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 56"
[1] "ENDing cell.. 56 With feature... Sphericity"
[1] "STARTing cell.. 173 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0736 0.0667 0.0695 0.1118 0.1277 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 173"
[1] "ENDing cell.. 173 With feature... Sphericity"
[1] "STARTing cell.. 232 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0795 0.0257 0.0894 0.1511 0.1879 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 232"
[1] "ENDing cell.. 232 With feature... Sphericity"
[1] "STARTing cell.. 37 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.127 0.193 0.1485 0.1755 -0.0448 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 37"
[1] "ENDing cell.. 37 With feature... Sphericity"
[1] "STARTing cell.. 86 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.23 -0.316 -0.326 -0.361 -0.348 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 86"
[1] "ENDing cell.. 86 With feature... Sphericity"
[1] "STARTing cell.. 103 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0905 0.1193 0.1617 0.2141 0.2549 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 103"
[1] "ENDing cell.. 103 With feature... Sphericity"
[1] "STARTing cell.. 208 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.4528 -0.3097 -0.2732 -0.1713 -0.0271 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 208"
[1] "ENDing cell.. 208 With feature... Sphericity"
[1] "STARTing cell.. 190 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.1342 0.1213 0.0495 -0.0127 0.1131 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 190"
[1] "ENDing cell.. 190 With feature... Sphericity"
[1] "STARTing cell.. 4 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.132 -0.203 -0.33 -0.299 -0.158 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 4"
[1] "ENDing cell.. 4 With feature... Sphericity"
[1] "STARTing cell.. 238 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0378 0.0671 -0.0231 0.0271 -0.0874 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 238"
[1] "ENDing cell.. 238 With feature... Sphericity"
[1] "STARTing cell.. 11 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0454 -0.0686 -0.0894 0.0548 -0.0593 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 11"
[1] "ENDing cell.. 11 With feature... Sphericity"
[1] "STARTing cell.. 29 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0509 0.1309 0.1428 0.0718 0.1795 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 29"
[1] "ENDing cell.. 29 With feature... Sphericity"
[1] "STARTing cell.. 59 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.035 0.026 0.106 0.253 0.236 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 59"
[1] "ENDing cell.. 59 With feature... Sphericity"
[1] "STARTing cell.. 96 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0244 0.1363 0.2119 0.2555 0.2453 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 96"
[1] "ENDing cell.. 96 With feature... Sphericity"
[1] "STARTing cell.. 204 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.1827 -0.1264 0.2032 0.1529 -0.0732 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 204"
[1] "ENDing cell.. 204 With feature... Sphericity"
[1] "STARTing cell.. 275 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.478 0.419 0.423 0.342 0.244 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 275"
[1] "ENDing cell.. 275 With feature... Sphericity"
[1] "STARTing cell.. 130 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0733 0.089 0.0919 0.1241 0.0166 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 130"
[1] "ENDing cell.. 130 With feature... Sphericity"
[1] "STARTing cell.. 137 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.2593 0.2691 0.1812 0.2023 0.0912 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 137"
[1] "ENDing cell.. 137 With feature... Sphericity"
[1] "STARTing cell.. 140 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.178 0.236 0.202 0.232 0.134 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 140"
[1] "ENDing cell.. 140 With feature... Sphericity"
[1] "STARTing cell.. 226 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.1007 -0.101 -0.1006 -0.0815 -0.1672 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 226"
[1] "ENDing cell.. 226 With feature... Sphericity"
[1] "STARTing cell.. 74 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.014 0.0909 0.2967 0.2047 0.2489 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 74"
[1] "ENDing cell.. 74 With feature... Sphericity"
[1] "STARTing cell.. 256 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.281 0.323 0.349 0.285 0.373 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 256"
[1] "ENDing cell.. 256 With feature... Sphericity"
[1] "STARTing cell.. 65 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.1557 -0.0783 0.03 -0.069 0.0439 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 65"
[1] "ENDing cell.. 65 With feature... Sphericity"
[1] "STARTing cell.. 87 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0357 0.0687 -0.011 0.0876 0.0364 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 87"
[1] "ENDing cell.. 87 With feature... Sphericity"
[1] "STARTing cell.. 124 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -2.25e-01 -1.52e-01 -1.06e-01 -6.23e-05 5.50e-02 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 124"
[1] "ENDing cell.. 124 With feature... Sphericity"
[1] "STARTing cell.. 210 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.1402 -0.0776 -0.1038 -0.0957 -0.0149 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 210"
[1] "ENDing cell.. 210 With feature... Sphericity"
[1] "STARTing cell.. 164 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.057641 0.012312 -0.047979 -0.000228 0.141696 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 164"
[1] "ENDing cell.. 164 With feature... Sphericity"
[1] "STARTing cell.. 230 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.231 -0.268 -0.243 -0.262 -0.191 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 230"
[1] "ENDing cell.. 230 With feature... Sphericity"
[1] "STARTing cell.. 13 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.1018 0.0793 0.0169 -0.0811 -0.0319 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 13"
[1] "ENDing cell.. 13 With feature... Sphericity"
[1] "STARTing cell.. 250 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.11846 0.10194 0.15349 0.17397 0.00974 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 250"
[1] "ENDing cell.. 250 With feature... Sphericity"
[1] "STARTing cell.. 10 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.302 0.321 0.364 0.386 0.468 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 10"
[1] "ENDing cell.. 10 With feature... Sphericity"
[1] "STARTing cell.. 85 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.1696 0.0856 0.185 0.1441 0.0284 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 85"
[1] "ENDing cell.. 85 With feature... Sphericity"
[1] "STARTing cell.. 61 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.1776 -0.20743 0.02891 0.01837 -0.00131 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 61"
[1] "ENDing cell.. 61 With feature... Sphericity"
[1] "STARTing cell.. 221 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0139 -0.0326 -0.0735 -0.1643 -0.1641 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 221"
[1] "ENDing cell.. 221 With feature... Sphericity"
[1] "STARTing cell.. 265 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.00929 0.00677 0.12785 0.09814 0.01212 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 265"
[1] "ENDing cell.. 265 With feature... Sphericity"
[1] "STARTing cell.. 58 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0404 -0.158 -0.3651 -0.149 -0.2084 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 58"
[1] "ENDing cell.. 58 With feature... Sphericity"
[1] "STARTing cell.. 114 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.3191 0.2313 0.1482 0.0909 0.0546 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 114"
[1] "ENDing cell.. 114 With feature... Sphericity"
[1] "STARTing cell.. 233 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.03306 -0.04683 0.00695 -0.05428 0.09742 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 233"
[1] "ENDing cell.. 233 With feature... Sphericity"
[1] "STARTing cell.. 246 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.243 0.168 0.182 0.431 0.308 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 246"
[1] "ENDing cell.. 246 With feature... Sphericity"
[1] "STARTing cell.. 104 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0268 0.0341 0.0149 -0.0025 -0.0027 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 104"
[1] "ENDing cell.. 104 With feature... Sphericity"
[1] "STARTing cell.. 76 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.129 0.279 0.272 0.257 0.437 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 76"
[1] "ENDing cell.. 76 With feature... Sphericity"
[1] "STARTing cell.. 239 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.1967 0.1123 0.0233 0.0317 0.15 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 239"
[1] "ENDing cell.. 239 With feature... Sphericity"
[1] "STARTing cell.. 88 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.1373 -0.0833 -0.0293 -0.028 -0.1014 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 88"
[1] "ENDing cell.. 88 With feature... Sphericity"
[1] "STARTing cell.. 211 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.277 0.235 0.248 0.311 0.256 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 211"
[1] "ENDing cell.. 211 With feature... Sphericity"
[1] "STARTing cell.. 24 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0188 0.0403 0.1328 0.0344 0.2069 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 24"
[1] "ENDing cell.. 24 With feature... Sphericity"
[1] "STARTing cell.. 276 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.01741 0.00772 0.0549 -0.0368 -0.03461 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 276"
[1] "ENDing cell.. 276 With feature... Sphericity"
[1] "STARTing cell.. 115 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.1987 0.2567 0.0822 0.2117 0.1612 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 115"
[1] "ENDing cell.. 115 With feature... Sphericity"
[1] "STARTing cell.. 132 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.434 0.55 0.52 0.525 0.503 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 132"
[1] "ENDing cell.. 132 With feature... Sphericity"
[1] "STARTing cell.. 138 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.1119 0.1349 0.0583 0.1188 0.0782 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 138"
[1] "ENDing cell.. 138 With feature... Sphericity"
[1] "STARTing cell.. 227 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0662 -0.2681 -0.1092 0.0515 0.0751 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 227"
[1] "ENDing cell.. 227 With feature... Sphericity"
[1] "STARTing cell.. 257 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0101 -0.1284 -0.2474 -0.1617 -0.2719 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 257"
[1] "ENDing cell.. 257 With feature... Sphericity"
[1] "STARTing cell.. 133 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.246 0.415 0.297 0.195 0.196 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 133"
[1] "ENDing cell.. 133 With feature... Sphericity"
[1] "STARTing cell.. 126 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0156 0.0241 0.0897 0.1596 0.1808 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 126"
[1] "ENDing cell.. 126 With feature... Sphericity"
[1] "STARTing cell.. 78 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0911 -0.0602 -0.0326 0.0103 0.0712 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 78"
[1] "ENDing cell.. 78 With feature... Sphericity"
[1] "STARTing cell.. 166 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0484 0.086 0.0469 0.0503 0.0673 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 166"
[1] "ENDing cell.. 166 With feature... Sphericity"
[1] "STARTing cell.. 195 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.017 0.0933 0.122 0.1377 0.0972 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 195"
[1] "ENDing cell.. 195 With feature... Sphericity"
[1] "STARTing cell.. 251 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.00999 0.11012 0.17083 0.15663 0.11823 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 251"
[1] "ENDing cell.. 251 With feature... Sphericity"
[1] "STARTing cell.. 12 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.321 0.282 0.258 0.159 0.216 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 12"
[1] "ENDing cell.. 12 With feature... Sphericity"
[1] "STARTing cell.. 222 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.00682 -0.01173 0.11519 0.10407 -0.00789 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 222"
[1] "ENDing cell.. 222 With feature... Sphericity"
[1] "STARTing cell.. 60 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.1532 -0.1021 0.0135 -0.0366 -0.142 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 60"
[1] "ENDing cell.. 60 With feature... Sphericity"
[1] "STARTing cell.. 63 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0504 -0.0629 -0.14 -0.2032 -0.0675 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 63"
[1] "ENDing cell.. 63 With feature... Sphericity"
[1] "STARTing cell.. 175 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.1041 -0.0764 -0.0159 -0.054 0.073 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 175"
[1] "ENDing cell.. 175 With feature... Sphericity"
[1] "STARTing cell.. 234 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.343 -0.382 -0.371 -0.429 -0.337 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 234"
[1] "ENDing cell.. 234 With feature... Sphericity"
[1] "STARTing cell.. 192 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0479 0.0464 0.1263 0.1387 0.2132 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 192"
[1] "ENDing cell.. 192 With feature... Sphericity"
[1] "STARTing cell.. 240 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.08584 0.14325 -0.07286 0.09964 -0.00517 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 240"
[1] "ENDing cell.. 240 With feature... Sphericity"
[1] "STARTing cell.. 80 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.166 0.1293 0.0373 0.034 -0.0161 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 80"
[1] "ENDing cell.. 80 With feature... Sphericity"
[1] "STARTing cell.. 97 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0971 -0.175 -0.2698 -0.0325 -0.0332 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 97"
[1] "ENDing cell.. 97 With feature... Sphericity"
[1] "STARTing cell.. 207 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.127 -0.126 -0.156 -0.11 -0.056 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 207"
[1] "ENDing cell.. 207 With feature... Sphericity"
[1] "STARTing cell.. 277 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.031 -0.154 0.0801 0.0333 0.2711 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 277"
[1] "ENDing cell.. 277 With feature... Sphericity"
[1] "STARTing cell.. 73 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0277 0.152 0.0992 0.1902 0.136 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 73"
[1] "ENDing cell.. 73 With feature... Sphericity"
[1] "STARTing cell.. 139 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.3368 0.1806 0.0579 -0.0118 -0.0537 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 139"
[1] "ENDing cell.. 139 With feature... Sphericity"
[1] "STARTing cell.. 258 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.33 -0.369 -0.354 -0.408 -0.432 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 258"
[1] "ENDing cell.. 258 With feature... Sphericity"
[1] "STARTing cell.. 179 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.375 0.412 0.431 0.403 0.361 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 179"
[1] "ENDing cell.. 179 With feature... Sphericity"
[1] "STARTing cell.. 167 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0746 0.0485 0.0347 0.0823 0.0894 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 167"
[1] "ENDing cell.. 167 With feature... Sphericity"
[1] "STARTing cell.. 252 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.241 0.242 0.2 0.225 0.35 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 252"
[1] "ENDing cell.. 252 With feature... Sphericity"
[1] "STARTing cell.. 81 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.3447 -0.0511 0.0308 0.0919 -0.0844 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 81"
[1] "ENDing cell.. 81 With feature... Sphericity"
[1] "STARTing cell.. 14 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.153 0.208 0.287 0.318 0.353 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 14"
[1] "ENDing cell.. 14 With feature... Sphericity"
[1] "STARTing cell.. 199 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0684 0.0326 0.0816 -0.0011 0.1127 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 199"
[1] "ENDing cell.. 199 With feature... Sphericity"
[1] "STARTing cell.. 266 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.06375 0.1384 0.00694 0.08662 0.04269 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 266"
[1] "ENDing cell.. 266 With feature... Sphericity"
[1] "STARTing cell.. 116 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.04304 0.00848 -0.10896 0.02014 0.07293 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 116"
[1] "ENDing cell.. 116 With feature... Sphericity"
[1] "STARTing cell.. 176 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.1311 0.1212 0.1323 0.1673 -0.0704 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 176"
[1] "ENDing cell.. 176 With feature... Sphericity"
[1] "STARTing cell.. 235 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.00564 -0.02518 -0.01647 -0.02076 -0.06746 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 235"
[1] "ENDing cell.. 235 With feature... Sphericity"
[1] "STARTing cell.. 38 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.00164 0.03232 -0.09216 -0.03364 -0.14839 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 38"
[1] "ENDing cell.. 38 With feature... Sphericity"
[1] "STARTing cell.. 105 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.2177 -0.2353 -0.1835 -0.1294 -0.0892 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 105"
[1] "ENDing cell.. 105 With feature... Sphericity"
[1] "STARTing cell.. 193 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.3119 -0.2383 -0.1563 -0.0895 -0.0776 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 193"
[1] "ENDing cell.. 193 With feature... Sphericity"
[1] "STARTing cell.. 181 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.1611 -0.1374 -0.092 -0.0413 0.0262 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 181"
[1] "ENDing cell.. 181 With feature... Sphericity"
[1] "STARTing cell.. 28 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.345 0.31 0.342 0.391 0.346 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 28"
[1] "ENDing cell.. 28 With feature... Sphericity"
[1] "STARTing cell.. 98 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0269 -0.086 -0.0218 -0.2989 -0.0906 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 98"
[1] "ENDing cell.. 98 With feature... Sphericity"
[1] "STARTing cell.. 200 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.1808 -0.247 -0.0435 0.046 0.0227 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 200"
[1] "ENDing cell.. 200 With feature... Sphericity"
[1] "STARTing cell.. 209 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.1168 -0.0139 -0.025 -0.0134 0.0154 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 209"
[1] "ENDing cell.. 209 With feature... Sphericity"
[1] "STARTing cell.. 278 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0103 0.0373 0.0157 0.1276 0.1225 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 278"
[1] "ENDing cell.. 278 With feature... Sphericity"
[1] "STARTing cell.. 75 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.1149 0.163 0.1673 0.0468 0.1354 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 75"
[1] "ENDing cell.. 75 With feature... Sphericity"
[1] "STARTing cell.. 141 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.07195 -0.02258 -0.00358 0.08551 0.1079 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 141"
[1] "ENDing cell.. 141 With feature... Sphericity"
[1] "STARTing cell.. 259 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.1021 -0.1106 -0.1375 -0.1559 -0.0764 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 259"
[1] "ENDing cell.. 259 With feature... Sphericity"
[1] "STARTing cell.. 16 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0539 -0.0327 -0.0853 -0.1732 -0.1742 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 16"
[1] "ENDing cell.. 16 With feature... Sphericity"
[1] "STARTing cell.. 267 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.06798 0.05927 0.00847 0.02901 0.04636 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 267"
[1] "ENDing cell.. 267 With feature... Sphericity"
[1] "STARTing cell.. 201 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.04962 0.03611 0.04936 -0.04955 -0.00383 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 201"
[1] "ENDing cell.. 201 With feature... Sphericity"
[1] "STARTing cell.. 117 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.288 -0.31 -0.277 -0.325 -0.324 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 117"
[1] "ENDing cell.. 117 With feature... Sphericity"
[1] "STARTing cell.. 177 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.042 0.0433 0.0289 0.1993 0.2661 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 177"
[1] "ENDing cell.. 177 With feature... Sphericity"
[1] "STARTing cell.. 15 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.3371 -0.2694 -0.213 -0.1723 -0.0926 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 15"
[1] "ENDing cell.. 15 With feature... Sphericity"
[1] "STARTing cell.. 106 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0407 -0.0318 0.0754 0.1133 0.2573 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 106"
[1] "ENDing cell.. 106 With feature... Sphericity"
[1] "STARTing cell.. 194 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.01912 0.00136 -0.07806 0.02027 0.17809 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 194"
[1] "ENDing cell.. 194 With feature... Sphericity"
[1] "STARTing cell.. 31 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0888 0.021 0.1085 -0.02 0.0283 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 31"
[1] "ENDing cell.. 31 With feature... Sphericity"
[1] "STARTing cell.. 77 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.1435 -0.1081 -0.1363 0.0219 -0.2216 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 77"
[1] "ENDing cell.. 77 With feature... Sphericity"
[1] "STARTing cell.. 91 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.1126 0.1624 0.2693 0.1628 0.0938 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 91"
[1] "ENDing cell.. 91 With feature... Sphericity"
[1] "STARTing cell.. 142 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0339 -0.0529 -0.1411 -0.1314 -0.1234 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 142"
[1] "ENDing cell.. 142 With feature... Sphericity"
[1] "STARTing cell.. 17 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.1153 -0.1899 -0.1978 -0.0454 0.0417 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 17"
[1] "ENDing cell.. 17 With feature... Sphericity"
[1] "STARTing cell.. 62 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0108 -0.0435 0.047 -0.0358 -0.0659 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 62"
[1] "ENDing cell.. 62 With feature... Sphericity"
[1] "STARTing cell.. 168 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.394 -0.374 -0.338 -0.28 -0.278 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 168"
[1] "ENDing cell.. 168 With feature... Sphericity"
[1] "STARTing cell.. 127 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.151 -0.225 -0.288 -0.392 -0.448 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 127"
[1] "ENDing cell.. 127 With feature... Sphericity"
[1] "STARTing cell.. 253 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.088051 0.000587 -0.032673 0.06235 0.116371 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 253"
[1] "ENDing cell.. 253 With feature... Sphericity"
[1] "STARTing cell.. 118 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0906 0.0313 -0.1613 0.1349 0.0252 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 118"
[1] "ENDing cell.. 118 With feature... Sphericity"
[1] "STARTing cell.. 39 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0991 0.1595 0.0293 0.193 0.1052 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 39"
[1] "ENDing cell.. 39 With feature... Sphericity"
[1] "STARTing cell.. 107 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0483 0.0435 -0.024 -0.0503 -0.0317 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 107"
[1] "ENDing cell.. 107 With feature... Sphericity"
[1] "STARTing cell.. 196 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0103 0.0468 -0.0996 -0.1216 -0.097 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 196"
[1] "ENDing cell.. 196 With feature... Sphericity"
[1] "STARTing cell.. 212 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0513 -0.0373 -0.0559 -0.1132 -0.1569 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 212"
[1] "ENDing cell.. 212 With feature... Sphericity"
[1] "STARTing cell.. 79 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.07845 -0.08262 -0.0593 -0.00248 0.00782 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 79"
[1] "ENDing cell.. 79 With feature... Sphericity"
[1] "STARTing cell.. 143 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0362 -0.0239 -0.0189 0.0131 0.0154 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 143"
[1] "ENDing cell.. 143 With feature... Sphericity"
[1] "STARTing cell.. 92 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.153 0.185 0.14 0.213 0.169 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 92"
[1] "ENDing cell.. 92 With feature... Sphericity"
[1] "STARTing cell.. 169 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0731 0.0948 -0.0787 -0.0889 -0.2113 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 169"
[1] "ENDing cell.. 169 With feature... Sphericity"
[1] "STARTing cell.. 254 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.1763 -0.1363 -0.0179 -0.1688 -0.1769 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 254"
[1] "ENDing cell.. 254 With feature... Sphericity"
[1] "STARTing cell.. 269 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0226 -0.0229 -0.0751 0.042 -0.0587 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 269"
[1] "ENDing cell.. 269 With feature... Sphericity"
[1] "STARTing cell.. 119 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.21204 -0.13723 -0.00644 0.05514 0.09805 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 119"
[1] "ENDing cell.. 119 With feature... Sphericity"
[1] "STARTing cell.. 180 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.1089 0.1046 0.1627 0.0934 -0.0666 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 180"
[1] "ENDing cell.. 180 With feature... Sphericity"
[1] "STARTing cell.. 151 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0288 -0.0969 -0.0392 -0.0657 -0.093 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 151"
[1] "ENDing cell.. 151 With feature... Sphericity"
[1] "STARTing cell.. 40 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.206 -0.23 -0.245 -0.262 -0.273 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 40"
[1] "ENDing cell.. 40 With feature... Sphericity"
[1] "STARTing cell.. 191 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.33 -0.168 -0.12 -0.111 -0.197 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 191"
[1] "ENDing cell.. 191 With feature... Sphericity"
[1] "STARTing cell.. 108 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.227 0.218 0.532 0.412 0.423 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 108"
[1] "ENDing cell.. 108 With feature... Sphericity"
[1] "STARTing cell.. 198 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.1209 0.1592 0.0311 -0.1163 -0.0719 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 198"
[1] "ENDing cell.. 198 With feature... Sphericity"
[1] "STARTing cell.. 144 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.06757 0.02421 0.0307 -0.05087 -0.00198 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 144"
[1] "ENDing cell.. 144 With feature... Sphericity"
[1] "STARTing cell.. 170 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.1493 -0.1115 -0.0374 0.2079 0.087 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 170"
[1] "ENDing cell.. 170 With feature... Sphericity"
[1] "STARTing cell.. 270 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0917 -0.1365 0.0267 0.149 0.3252 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 270"
[1] "ENDing cell.. 270 With feature... Sphericity"
[1] "STARTing cell.. 41 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0784 -0.1011 -0.0501 -0.083 -0.1775 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 41"
[1] "ENDing cell.. 41 With feature... Sphericity"
[1] "STARTing cell.. 154 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.1226 0.0456 0.0555 0.1267 0.0207 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 154"
[1] "ENDing cell.. 154 With feature... Sphericity"
[1] "STARTing cell.. 90 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.29127 -0.29438 -0.17114 -0.00739 -0.06385 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 90"
[1] "ENDing cell.. 90 With feature... Sphericity"
[1] "STARTing cell.. 145 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0593 -0.1112 -0.1493 -0.1449 -0.1456 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 145"
[1] "ENDing cell.. 145 With feature... Sphericity"
[1] "STARTing cell.. 271 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.18 -0.111 -0.203 -0.234 -0.108 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 271"
[1] "ENDing cell.. 271 With feature... Sphericity"
[1] "STARTing cell.. 183 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.039 0.0568 0.0269 0.0671 0.028 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 183"
[1] "ENDing cell.. 183 With feature... Sphericity"
[1] "STARTing cell.. 147 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.146 0.138 0.167 0.137 0.19 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 147"
[1] "ENDing cell.. 147 With feature... Sphericity"
[1] "STARTing cell.. 178 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.08148 0.01812 0.00774 0.0863 0.08796 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 178"
[1] "ENDing cell.. 178 With feature... Sphericity"
[1] "STARTing cell.. 272 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.1125 -0.0418 -0.1254 -0.1236 -0.1181 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 272"
[1] "ENDing cell.. 272 With feature... Sphericity"
[1] "STARTing cell.. 43 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0132 -0.0225 0.0691 0.2321 0.2121 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 43"
[1] "ENDing cell.. 43 With feature... Sphericity"
[1] "STARTing cell.. 99 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.017 0.101 0.146 0.221 0.282 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 99"
[1] "ENDing cell.. 99 With feature... Sphericity"
[1] "STARTing cell.. 155 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.00853 0.08314 -0.08184 -0.19964 -0.01244 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 155"
[1] "ENDing cell.. 155 With feature... Sphericity"
[1] "STARTing cell.. 148 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.232 -0.013 -0.083 -0.122 -0.12 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 148"
[1] "ENDing cell.. 148 With feature... Sphericity"
[1] "STARTing cell.. 215 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.417 -0.42 -0.443 -0.254 -0.183 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 215"
[1] "ENDing cell.. 215 With feature... Sphericity"
[1] "STARTing cell.. 149 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0213 0.205 0.0826 0.1004 0.0261 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 149"
[1] "ENDing cell.. 149 With feature... Sphericity"
[1] "STARTing cell.. 89 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.203 -0.273 -0.306 -0.28 -0.237 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 89"
[1] "ENDing cell.. 89 With feature... Sphericity"
[1] "STARTing cell.. 156 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0243 0.0295 0.063 0.1308 0.0346 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 156"
[1] "ENDing cell.. 156 With feature... Sphericity"
[1] "STARTing cell.. 150 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.1655 0.1185 0.0304 0.094 -0.1966 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 150"
[1] "ENDing cell.. 150 With feature... Sphericity"
[1] "STARTing cell.. 42 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0992 -0.0291 -0.0219 -0.0698 -0.1517 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 42"
[1] "ENDing cell.. 42 With feature... Sphericity"
[1] "STARTing cell.. 44 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.148 0.189 0.234 0.22 0.179 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 44"
[1] "ENDing cell.. 44 With feature... Sphericity"
[1] "STARTing cell.. 100 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0746 0.1311 0.0355 -0.1609 -0.0408 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 100"
[1] "ENDing cell.. 100 With feature... Sphericity"
[1] "STARTing cell.. 153 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0322 0.0907 0.1209 0.1735 0.2283 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 153"
[1] "ENDing cell.. 153 With feature... Sphericity"
[1] "STARTing cell.. 47 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 2.28e-05 -4.78e-02 9.26e-03 1.81e-03 1.19e-01 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 47"
[1] "ENDing cell.. 47 With feature... Sphericity"
[1] "STARTing cell.. 202 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0844 0.0293 0.1585 0.0952 0.3581 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 202"
[1] "ENDing cell.. 202 With feature... Sphericity"
[1] "STARTing cell.. 51 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.00644 0.04768 0.1099 0.09415 0.14578 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 51"
[1] "ENDing cell.. 51 With feature... Sphericity"
[1] "STARTing cell.. 260 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0163 -0.1309 -0.0123 -0.1992 -0.1379 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 260"
[1] "ENDing cell.. 260 With feature... Sphericity"
[1] "STARTing cell.. 217 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.084 0.0738 0.1784 0.1464 0.0791 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 217"
[1] "ENDing cell.. 217 With feature... Sphericity"
[1] "STARTing cell.. 182 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.05017 -0.04014 -0.00797 0.01097 0.07004 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 182"
[1] "ENDing cell.. 182 With feature... Sphericity"
[1] "STARTing cell.. 184 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0984 0.1126 -0.0823 -0.0397 -0.3491 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 184"
[1] "ENDing cell.. 184 With feature... Sphericity"
[1] "STARTing cell.. 45 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.2238 -0.1577 -0.1153 -0.0664 -0.0555 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 45"
[1] "ENDing cell.. 45 With feature... Sphericity"
[1] "STARTing cell.. 241 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0769 0.0392 0.0121 0.1812 0.1207 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 241"
[1] "ENDing cell.. 241 With feature... Sphericity"
[1] "STARTing cell.. 82 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.467 -0.447 -0.348 -0.439 -0.401 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 82"
[1] "ENDing cell.. 82 With feature... Sphericity"
[1] "STARTing cell.. 261 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.21509 -0.02121 0.01657 0.05277 0.00222 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 261"
[1] "ENDing cell.. 261 With feature... Sphericity"
[1] "STARTing cell.. 262 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0862 0.0531 0.0972 -0.2591 -0.1708 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 262"
[1] "ENDing cell.. 262 With feature... Sphericity"
[1] "STARTing cell.. 216 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.2274 0.1637 0.0833 -0.0101 -0.1405 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 216"
[1] "ENDing cell.. 216 With feature... Sphericity"
[1] "STARTing cell.. 66 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0106 0.0588 0.1078 0.3094 0.3236 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 66"
[1] "ENDing cell.. 66 With feature... Sphericity"
[1] "STARTing cell.. 128 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0777 0.2142 0.2061 0.2197 0.1301 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 128"
[1] "ENDing cell.. 128 With feature... Sphericity"
[1] "STARTing cell.. 50 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0662 -0.0516 -0.0293 0.2292 0.1831 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 50"
[1] "ENDing cell.. 50 With feature... Sphericity"
[1] "STARTing cell.. 5 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.1369 0.1883 0.3079 0.036 0.0378 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 5"
[1] "ENDing cell.. 5 With feature... Sphericity"
[1] "STARTing cell.. 26 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0574 0.022 -0.0992 -0.0596 -0.0774 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 26"
[1] "ENDing cell.. 26 With feature... Sphericity"
[1] "STARTing cell.. 129 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.2495 -0.1757 -0.1358 -0.1427 -0.0615 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 129"
[1] "ENDing cell.. 129 With feature... Sphericity"
[1] "STARTing cell.. 67 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.00739 -0.00355 0.0614 0.19291 0.10123 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 67"
[1] "ENDing cell.. 67 With feature... Sphericity"
[1] "STARTing cell.. 247 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0568 -0.0369 -0.0213 -0.0552 -0.1857 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 247"
[1] "ENDing cell.. 247 With feature... Sphericity"
[1] "STARTing cell.. 134 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.179 -0.0394 0.0842 0.2054 0.1307 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 134"
[1] "ENDing cell.. 134 With feature... Sphericity"
[1] "STARTing cell.. 93 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.00826 -0.06289 -0.01608 -0.18784 -0.20077 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 93"
[1] "ENDing cell.. 93 With feature... Sphericity"
[1] "STARTing cell.. 248 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0836 0.1995 0.2351 0.3314 0.3894 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 248"
[1] "ENDing cell.. 248 With feature... Sphericity"
[1] "STARTing cell.. 157 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.176 0.231 0.178 0.115 0.159 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 157"
[1] "ENDing cell.. 157 With feature... Sphericity"
[1] "STARTing cell.. 46 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.198 0.335 0.381 0.544 0.524 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 46"
[1] "ENDing cell.. 46 With feature... Sphericity"
[1] "STARTing cell.. 242 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.1543 -0.1529 -0.1464 0.0958 0.0814 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 242"
[1] "ENDing cell.. 242 With feature... Sphericity"
[1] "STARTing cell.. 159 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.103 -0.292 -0.312 -0.407 -0.395 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 159"
[1] "ENDing cell.. 159 With feature... Sphericity"
[1] "STARTing cell.. 186 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0924 -0.1436 0.0585 0.0501 -0.0893 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 186"
[1] "ENDing cell.. 186 With feature... Sphericity"
[1] "STARTing cell.. 228 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.1371 -0.0381 -0.1304 0.0679 0.0166 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 228"
[1] "ENDing cell.. 228 With feature... Sphericity"
[1] "STARTing cell.. 160 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.0186 -0.045 -0.021 -0.1839 -0.2393 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 160"
[1] "ENDing cell.. 160 With feature... Sphericity"
[1] "STARTing cell.. 279 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.07219 0.09164 0.00276 0.05062 -0.02165 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 279"
[1] "ENDing cell.. 279 With feature... Sphericity"
[1] "STARTing cell.. 53 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0354 0.0385 -0.0327 0.0141 0.0434 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 53"
[1] "ENDing cell.. 53 With feature... Sphericity"
[1] "STARTing cell.. 94 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.15 -0.112 -0.079 0.04 0.126 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 94"
[1] "ENDing cell.. 94 With feature... Sphericity"
[1] "STARTing cell.. 121 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.19 -0.215 0.163 0.124 -0.349 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 121"
[1] "ENDing cell.. 121 With feature... Sphericity"
[1] "STARTing cell.. 213 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.2441 -0.3183 -0.1092 -0.1224 -0.0247 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 213"
[1] "ENDing cell.. 213 With feature... Sphericity"
[1] "STARTing cell.. 109 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0209 0.0758 0.1372 0.0617 0.086 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 109"
[1] "ENDing cell.. 109 With feature... Sphericity"
[1] "STARTing cell.. 110 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.1641 0.1267 0.1307 -0.0242 -0.3443 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 110"
[1] "ENDing cell.. 110 With feature... Sphericity"
[1] "STARTing cell.. 101 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.2584 0.3042 0.2631 0.1846 0.0952 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 101"
[1] "ENDing cell.. 101 With feature... Sphericity"
[1] "STARTing cell.. 187 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.2442 -0.2543 -0.2194 -0.2096 -0.0969 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 187"
[1] "ENDing cell.. 187 With feature... Sphericity"
[1] "STARTing cell.. 263 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.081 0.1547 0.1465 -0.0526 0.085 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 263"
[1] "ENDing cell.. 263 With feature... Sphericity"
[1] "STARTing cell.. 218 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.0609 -0.1625 -0.2843 -0.3103 -0.2258 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 218"
[1] "ENDing cell.. 218 With feature... Sphericity"
[1] "STARTing cell.. 19 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.3422 0.0794 0.0694 0.1926 0.0725 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 19"
[1] "ENDing cell.. 19 With feature... Sphericity"
[1] "STARTing cell.. 20 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] 0.03259 0.03599 0.01107 -0.00784 0.10907 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 20"
[1] "ENDing cell.. 20 With feature... Sphericity"
[1] "STARTing cell.. 224 With feature... Sphericity"
List of 6
$ acf : num [1:27, 1, 1] -0.1485 -0.2454 -0.0756 -0.107 0.0276 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 224"
[1] "ENDing cell.. 224 With feature... Sphericity"
[1] "STARTing cell.. 219 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.06 -0.0259 -0.0344 0.0442 -0.0912 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 219"
[1] "ENDing cell.. 219 With feature... Vol2surf"
[1] "STARTing cell.. 264 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.427 0.383 0.382 0.365 0.385 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 264"
[1] "ENDing cell.. 264 With feature... Vol2surf"
[1] "STARTing cell.. 136 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0791 -0.0859 -0.0986 -0.0238 0.0106 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 136"
[1] "ENDing cell.. 136 With feature... Vol2surf"
[1] "STARTing cell.. 54 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.176 -0.26 -0.265 -0.284 -0.226 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 54"
[1] "ENDing cell.. 54 With feature... Vol2surf"
[1] "STARTing cell.. 69 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.1005 0.0119 -0.0306 0.0284 0.0237 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 69"
[1] "ENDing cell.. 69 With feature... Vol2surf"
[1] "STARTing cell.. 111 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.11224 -0.10677 -0.04321 0.02879 0.00735 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 111"
[1] "ENDing cell.. 111 With feature... Vol2surf"
[1] "STARTing cell.. 189 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0253 -0.0127 0.0322 0.0779 0.1286 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 189"
[1] "ENDing cell.. 189 With feature... Vol2surf"
[1] "STARTing cell.. 171 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.1303 0.0532 0.0238 0.0181 0.02 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 171"
[1] "ENDing cell.. 171 With feature... Vol2surf"
[1] "STARTing cell.. 231 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.46 -0.415 -0.393 -0.247 -0.196 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 231"
[1] "ENDing cell.. 231 With feature... Vol2surf"
[1] "STARTing cell.. 205 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.253 0.249 0.249 0.349 0.407 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 205"
[1] "ENDing cell.. 205 With feature... Vol2surf"
[1] "STARTing cell.. 244 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0883 -0.128 -0.2022 -0.2923 -0.3466 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 244"
[1] "ENDing cell.. 244 With feature... Vol2surf"
[1] "STARTing cell.. 1 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.296 0.335 0.357 0.417 0.363 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 1"
[1] "ENDing cell.. 1 With feature... Vol2surf"
[1] "STARTing cell.. 36 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.254 -0.286 -0.407 -0.428 -0.37 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 36"
[1] "ENDing cell.. 36 With feature... Vol2surf"
[1] "STARTing cell.. 7 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.1339 0.104 0.1254 0.0607 0.01 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 7"
[1] "ENDing cell.. 7 With feature... Vol2surf"
[1] "STARTing cell.. 102 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.1961 -0.2421 -0.2152 -0.1837 -0.0608 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 102"
[1] "ENDing cell.. 102 With feature... Vol2surf"
[1] "STARTing cell.. 22 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.425 -0.392 -0.322 -0.37 -0.341 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 22"
[1] "ENDing cell.. 22 With feature... Vol2surf"
[1] "STARTing cell.. 188 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.158 0.158 0.117 0.146 0.142 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 188"
[1] "ENDing cell.. 188 With feature... Vol2surf"
[1] "STARTing cell.. 55 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0085 0.046 0.1089 0.1827 0.2779 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 55"
[1] "ENDing cell.. 55 With feature... Vol2surf"
[1] "STARTing cell.. 243 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.422 -0.333 -0.236 -0.235 -0.171 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 243"
[1] "ENDing cell.. 243 With feature... Vol2surf"
[1] "STARTing cell.. 123 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.042 0.1151 0.0811 0.1572 0.2699 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 123"
[1] "ENDing cell.. 123 With feature... Vol2surf"
[1] "STARTing cell.. 21 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.522 -0.568 -0.619 -0.663 -0.693 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 21"
[1] "ENDing cell.. 21 With feature... Vol2surf"
[1] "STARTing cell.. 163 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.129 0.167 0.162 0.302 0.244 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 163"
[1] "ENDing cell.. 163 With feature... Vol2surf"
[1] "STARTing cell.. 112 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.2108 0.1376 0.1148 0.0909 0.1842 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 112"
[1] "ENDing cell.. 112 With feature... Vol2surf"
[1] "STARTing cell.. 33 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.175 -0.111 -0.126 -0.256 -0.267 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 33"
[1] "ENDing cell.. 33 With feature... Vol2surf"
[1] "STARTing cell.. 172 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.01709 0.04389 0.09127 0.00302 -0.0709 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 172"
[1] "ENDing cell.. 172 With feature... Vol2surf"
[1] "STARTing cell.. 95 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.2546 -0.1844 -0.0996 -0.1629 -0.3637 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 95"
[1] "ENDing cell.. 95 With feature... Vol2surf"
[1] "STARTing cell.. 30 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.23 0.194 0.11 -0.019 -0.161 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 30"
[1] "ENDing cell.. 30 With feature... Vol2surf"
[1] "STARTing cell.. 203 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0716 -0.0166 0.1309 0.1298 0.1736 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 203"
[1] "ENDing cell.. 203 With feature... Vol2surf"
[1] "STARTing cell.. 274 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.268 0.332 0.264 0.295 0.218 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 274"
[1] "ENDing cell.. 274 With feature... Vol2surf"
[1] "STARTing cell.. 131 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.339 0.184 0.063 0.439 0.129 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 131"
[1] "ENDing cell.. 131 With feature... Vol2surf"
[1] "STARTing cell.. 68 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0309 0.0707 0.101 0.1737 0.198 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 68"
[1] "ENDing cell.. 68 With feature... Vol2surf"
[1] "STARTing cell.. 71 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.4 -0.51 -0.598 -0.618 -0.676 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 71"
[1] "ENDing cell.. 71 With feature... Vol2surf"
[1] "STARTing cell.. 135 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.385 -0.405 -0.415 -0.421 -0.44 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 135"
[1] "ENDing cell.. 135 With feature... Vol2surf"
[1] "STARTing cell.. 84 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.223 -0.224 -0.209 -0.218 -0.177 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 84"
[1] "ENDing cell.. 84 With feature... Vol2surf"
[1] "STARTing cell.. 206 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.1266 0.0422 0.1222 0.1582 0.204 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 206"
[1] "ENDing cell.. 206 With feature... Vol2surf"
[1] "STARTing cell.. 255 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.261 -0.312 -0.313 -0.207 -0.22 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 255"
[1] "ENDing cell.. 255 With feature... Vol2surf"
[1] "STARTing cell.. 64 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.00691 0.19556 0.03566 0.19836 0.2879 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 64"
[1] "ENDing cell.. 64 With feature... Vol2surf"
[1] "STARTing cell.. 9 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.1255 -0.0928 -0.1986 0.0361 -0.0611 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 9"
[1] "ENDing cell.. 9 With feature... Vol2surf"
[1] "STARTing cell.. 122 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.06842 0.00511 0.07425 0.09788 0.14913 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 122"
[1] "ENDing cell.. 122 With feature... Vol2surf"
[1] "STARTing cell.. 23 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.02382 -0.01003 -0.00925 -0.08712 -0.09788 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 23"
[1] "ENDing cell.. 23 With feature... Vol2surf"
[1] "STARTing cell.. 162 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0612 0.0619 0.0868 0.1373 0.2115 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 162"
[1] "ENDing cell.. 162 With feature... Vol2surf"
[1] "STARTing cell.. 229 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0571 0.0587 0.1013 0.0854 0.1617 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 229"
[1] "ENDing cell.. 229 With feature... Vol2surf"
[1] "STARTing cell.. 57 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.1 0.0272 0.1048 0.1849 0.1791 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 57"
[1] "ENDing cell.. 57 With feature... Vol2surf"
[1] "STARTing cell.. 249 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0766 -0.0752 0.0294 -0.0945 -0.1516 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 249"
[1] "ENDing cell.. 249 With feature... Vol2surf"
[1] "STARTing cell.. 125 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.532 0.481 0.436 0.394 0.526 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 125"
[1] "ENDing cell.. 125 With feature... Vol2surf"
[1] "STARTing cell.. 8 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.189 -0.131 -0.162 -0.119 -0.121 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 8"
[1] "ENDing cell.. 8 With feature... Vol2surf"
[1] "STARTing cell.. 165 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0169 0.053 0.1225 0.154 0.2721 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 165"
[1] "ENDing cell.. 165 With feature... Vol2surf"
[1] "STARTing cell.. 83 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0595 0.0107 -0.0312 -0.0541 -0.0452 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 83"
[1] "ENDing cell.. 83 With feature... Vol2surf"
[1] "STARTing cell.. 113 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0927 0.0793 -0.1313 -0.2133 0.0118 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 113"
[1] "ENDing cell.. 113 With feature... Vol2surf"
[1] "STARTing cell.. 220 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.177 -0.189 -0.174 -0.22 -0.37 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 220"
[1] "ENDing cell.. 220 With feature... Vol2surf"
[1] "STARTing cell.. 174 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.245 0.274 0.233 0.218 0.254 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 174"
[1] "ENDing cell.. 174 With feature... Vol2surf"
[1] "STARTing cell.. 56 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.04201 -0.00153 -0.04249 -0.15308 -0.24236 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 56"
[1] "ENDing cell.. 56 With feature... Vol2surf"
[1] "STARTing cell.. 173 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.1412 -0.0368 -0.0716 -0.0324 0.0202 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 173"
[1] "ENDing cell.. 173 With feature... Vol2surf"
[1] "STARTing cell.. 232 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.284 -0.419 -0.396 -0.431 -0.475 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 232"
[1] "ENDing cell.. 232 With feature... Vol2surf"
[1] "STARTing cell.. 37 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.231 0.273 0.297 0.278 0.124 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 37"
[1] "ENDing cell.. 37 With feature... Vol2surf"
[1] "STARTing cell.. 86 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0479 -0.043 -0.0348 -0.1298 -0.1792 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 86"
[1] "ENDing cell.. 86 With feature... Vol2surf"
[1] "STARTing cell.. 103 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0569 0.1016 0.1811 0.2549 0.3485 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 103"
[1] "ENDing cell.. 103 With feature... Vol2surf"
[1] "STARTing cell.. 208 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.00767 -0.07441 0.06868 0.00774 0.05956 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 208"
[1] "ENDing cell.. 208 With feature... Vol2surf"
[1] "STARTing cell.. 190 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.296 0.328 0.313 0.285 0.368 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 190"
[1] "ENDing cell.. 190 With feature... Vol2surf"
[1] "STARTing cell.. 4 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.363 -0.395 -0.52 -0.573 -0.557 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 4"
[1] "ENDing cell.. 4 With feature... Vol2surf"
[1] "STARTing cell.. 238 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.166 -0.222 -0.259 -0.295 -0.378 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 238"
[1] "ENDing cell.. 238 With feature... Vol2surf"
[1] "STARTing cell.. 11 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.135 0.147 0.196 0.181 0.181 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 11"
[1] "ENDing cell.. 11 With feature... Vol2surf"
[1] "STARTing cell.. 29 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.113 0.271 0.377 0.365 0.425 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 29"
[1] "ENDing cell.. 29 With feature... Vol2surf"
[1] "STARTing cell.. 59 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0284 0.1028 0.1493 0.2725 0.2811 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 59"
[1] "ENDing cell.. 59 With feature... Vol2surf"
[1] "STARTing cell.. 96 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.226 0.351 0.358 0.322 0.374 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 96"
[1] "ENDing cell.. 96 With feature... Vol2surf"
[1] "STARTing cell.. 204 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0201 -0.0532 0.084 0.0035 -0.056 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 204"
[1] "ENDing cell.. 204 With feature... Vol2surf"
[1] "STARTing cell.. 275 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.31 0.329 0.386 0.393 0.411 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 275"
[1] "ENDing cell.. 275 With feature... Vol2surf"
[1] "STARTing cell.. 130 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.00984 -0.02427 -0.0129 -0.02497 -0.14885 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 130"
[1] "ENDing cell.. 130 With feature... Vol2surf"
[1] "STARTing cell.. 137 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.269 0.281 0.307 0.369 0.293 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 137"
[1] "ENDing cell.. 137 With feature... Vol2surf"
[1] "STARTing cell.. 140 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0558 -0.0106 -0.116 -0.0479 -0.1342 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 140"
[1] "ENDing cell.. 140 With feature... Vol2surf"
[1] "STARTing cell.. 226 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.328 -0.317 -0.303 -0.276 -0.211 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 226"
[1] "ENDing cell.. 226 With feature... Vol2surf"
[1] "STARTing cell.. 74 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.268 0.372 0.487 0.488 0.554 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 74"
[1] "ENDing cell.. 74 With feature... Vol2surf"
[1] "STARTing cell.. 256 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.471 0.464 0.474 0.434 0.447 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 256"
[1] "ENDing cell.. 256 With feature... Vol2surf"
[1] "STARTing cell.. 65 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.005923 -0.005952 -0.031384 0.000609 -0.153244 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 65"
[1] "ENDing cell.. 65 With feature... Vol2surf"
[1] "STARTing cell.. 87 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.413 0.516 0.509 0.55 0.58 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 87"
[1] "ENDing cell.. 87 With feature... Vol2surf"
[1] "STARTing cell.. 124 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.2695 -0.2199 -0.1599 -0.0806 -0.0659 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 124"
[1] "ENDing cell.. 124 With feature... Vol2surf"
[1] "STARTing cell.. 210 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0449 -0.0319 0.0398 0.1357 0.131 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 210"
[1] "ENDing cell.. 210 With feature... Vol2surf"
[1] "STARTing cell.. 164 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0365 0.02 0.0333 0.071 0.0579 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 164"
[1] "ENDing cell.. 164 With feature... Vol2surf"
[1] "STARTing cell.. 230 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.03194 -0.00308 0.09555 0.11317 0.19538 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 230"
[1] "ENDing cell.. 230 With feature... Vol2surf"
[1] "STARTing cell.. 13 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.112 0.18 0.155 0.18 0.265 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 13"
[1] "ENDing cell.. 13 With feature... Vol2surf"
[1] "STARTing cell.. 250 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0795 -0.0849 -0.0832 -0.0842 -0.0526 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 250"
[1] "ENDing cell.. 250 With feature... Vol2surf"
[1] "STARTing cell.. 10 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.319 0.388 0.437 0.465 0.545 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 10"
[1] "ENDing cell.. 10 With feature... Vol2surf"
[1] "STARTing cell.. 85 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0765 0.1585 0.1865 0.2611 0.3539 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 85"
[1] "ENDing cell.. 85 With feature... Vol2surf"
[1] "STARTing cell.. 61 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0256 -0.0412 -0.0422 0.0842 0.0912 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 61"
[1] "ENDing cell.. 61 With feature... Vol2surf"
[1] "STARTing cell.. 221 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0338 -0.028 -0.0833 -0.1666 -0.2121 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 221"
[1] "ENDing cell.. 221 With feature... Vol2surf"
[1] "STARTing cell.. 265 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0658 0.1165 0.1949 0.1485 0.1402 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 265"
[1] "ENDing cell.. 265 With feature... Vol2surf"
[1] "STARTing cell.. 58 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.434 -0.585 -0.718 -0.547 -0.594 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 58"
[1] "ENDing cell.. 58 With feature... Vol2surf"
[1] "STARTing cell.. 114 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0425 -0.1493 -0.2497 -0.4186 -0.372 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 114"
[1] "ENDing cell.. 114 With feature... Vol2surf"
[1] "STARTing cell.. 233 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.05492 0.00426 0.01285 0.00833 0.07107 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 233"
[1] "ENDing cell.. 233 With feature... Vol2surf"
[1] "STARTing cell.. 246 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.1016 0.0284 0.025 0.1591 0.0219 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 246"
[1] "ENDing cell.. 246 With feature... Vol2surf"
[1] "STARTing cell.. 104 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0687 0.1439 0.2467 0.3102 0.4124 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 104"
[1] "ENDing cell.. 104 With feature... Vol2surf"
[1] "STARTing cell.. 76 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.367 0.455 0.519 0.625 0.613 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 76"
[1] "ENDing cell.. 76 With feature... Vol2surf"
[1] "STARTing cell.. 239 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.1208 -0.1693 -0.0894 0.0272 -0.0662 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 239"
[1] "ENDing cell.. 239 With feature... Vol2surf"
[1] "STARTing cell.. 88 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0105 -0.1357 -0.1434 -0.1309 -0.1619 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 88"
[1] "ENDing cell.. 88 With feature... Vol2surf"
[1] "STARTing cell.. 211 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.1875 -0.1531 -0.1855 -0.1049 -0.0335 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 211"
[1] "ENDing cell.. 211 With feature... Vol2surf"
[1] "STARTing cell.. 24 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.1914 -0.3526 -0.1604 -0.3133 -0.0784 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 24"
[1] "ENDing cell.. 24 With feature... Vol2surf"
[1] "STARTing cell.. 276 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.036 -0.0719 -0.1136 -0.1451 -0.1361 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 276"
[1] "ENDing cell.. 276 With feature... Vol2surf"
[1] "STARTing cell.. 115 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.019 -0.1575 0.0104 0.1873 0.1043 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 115"
[1] "ENDing cell.. 115 With feature... Vol2surf"
[1] "STARTing cell.. 132 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.1561 0.145 0.0933 0.1673 0.2422 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 132"
[1] "ENDing cell.. 132 With feature... Vol2surf"
[1] "STARTing cell.. 138 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.02484 0.04894 0.00769 0.04126 -0.01961 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 138"
[1] "ENDing cell.. 138 With feature... Vol2surf"
[1] "STARTing cell.. 227 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.01266 -0.06579 -0.03191 -0.06318 -0.00703 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 227"
[1] "ENDing cell.. 227 With feature... Vol2surf"
[1] "STARTing cell.. 257 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.372 -0.447 -0.493 -0.394 -0.394 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 257"
[1] "ENDing cell.. 257 With feature... Vol2surf"
[1] "STARTing cell.. 133 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.1378 0.0762 -0.0638 0.1538 -0.0621 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 133"
[1] "ENDing cell.. 133 With feature... Vol2surf"
[1] "STARTing cell.. 126 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.2369 -0.14 -0.166 -0.0938 -0.0169 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 126"
[1] "ENDing cell.. 126 With feature... Vol2surf"
[1] "STARTing cell.. 78 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.2242 0.2745 0.1883 0.1527 0.0774 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 78"
[1] "ENDing cell.. 78 With feature... Vol2surf"
[1] "STARTing cell.. 166 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0227 0.0475 0.0303 0.0526 0.1188 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 166"
[1] "ENDing cell.. 166 With feature... Vol2surf"
[1] "STARTing cell.. 195 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.1518 0.0699 0.1586 0.0932 0.1308 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 195"
[1] "ENDing cell.. 195 With feature... Vol2surf"
[1] "STARTing cell.. 251 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0327 -0.0198 -0.0284 -0.0463 -0.0171 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 251"
[1] "ENDing cell.. 251 With feature... Vol2surf"
[1] "STARTing cell.. 12 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.286 0.276 0.289 0.26 0.332 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 12"
[1] "ENDing cell.. 12 With feature... Vol2surf"
[1] "STARTing cell.. 222 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0317 0.0498 0.089 0.0582 0.1489 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 222"
[1] "ENDing cell.. 222 With feature... Vol2surf"
[1] "STARTing cell.. 60 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0539 -0.2482 -0.1766 -0.1159 -0.393 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 60"
[1] "ENDing cell.. 60 With feature... Vol2surf"
[1] "STARTing cell.. 63 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0689 -0.0847 -0.1402 -0.1847 -0.0834 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 63"
[1] "ENDing cell.. 63 With feature... Vol2surf"
[1] "STARTing cell.. 175 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.319 -0.38 -0.45 -0.549 -0.562 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 175"
[1] "ENDing cell.. 175 With feature... Vol2surf"
[1] "STARTing cell.. 234 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.606 -0.65 -0.626 -0.606 -0.596 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 234"
[1] "ENDing cell.. 234 With feature... Vol2surf"
[1] "STARTing cell.. 192 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.152 0.195 0.235 0.265 0.322 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 192"
[1] "ENDing cell.. 192 With feature... Vol2surf"
[1] "STARTing cell.. 240 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0788 0.2146 0.0877 0.1145 -0.0275 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 240"
[1] "ENDing cell.. 240 With feature... Vol2surf"
[1] "STARTing cell.. 80 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.1717 0.1745 0.0916 0.0775 0.0902 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 80"
[1] "ENDing cell.. 80 With feature... Vol2surf"
[1] "STARTing cell.. 97 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.257 -0.345 -0.39 -0.258 -0.265 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 97"
[1] "ENDing cell.. 97 With feature... Vol2surf"
[1] "STARTing cell.. 207 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.343 -0.332 -0.335 -0.304 -0.241 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 207"
[1] "ENDing cell.. 207 With feature... Vol2surf"
[1] "STARTing cell.. 277 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.1185 0.0908 0.024 -0.0411 -0.1834 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 277"
[1] "ENDing cell.. 277 With feature... Vol2surf"
[1] "STARTing cell.. 73 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0013 0.1308 0.1463 0.2259 0.2492 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 73"
[1] "ENDing cell.. 73 With feature... Vol2surf"
[1] "STARTing cell.. 139 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.46 0.386 0.342 0.281 0.28 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 139"
[1] "ENDing cell.. 139 With feature... Vol2surf"
[1] "STARTing cell.. 258 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0316 -0.0107 0.0298 0.0492 0.1331 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 258"
[1] "ENDing cell.. 258 With feature... Vol2surf"
[1] "STARTing cell.. 179 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.195 0.328 0.405 0.417 0.424 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 179"
[1] "ENDing cell.. 179 With feature... Vol2surf"
[1] "STARTing cell.. 167 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.00657 0.06105 0.00137 0.03839 0.06348 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 167"
[1] "ENDing cell.. 167 With feature... Vol2surf"
[1] "STARTing cell.. 252 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.201 0.232 0.178 0.334 0.364 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 252"
[1] "ENDing cell.. 252 With feature... Vol2surf"
[1] "STARTing cell.. 81 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.1157 -0.0808 -0.293 -0.1005 -0.2519 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 81"
[1] "ENDing cell.. 81 With feature... Vol2surf"
[1] "STARTing cell.. 14 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.00483 0.07529 0.17024 0.22606 0.28549 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 14"
[1] "ENDing cell.. 14 With feature... Vol2surf"
[1] "STARTing cell.. 199 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0193 0.0193 0.1368 0.1948 0.1484 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 199"
[1] "ENDing cell.. 199 With feature... Vol2surf"
[1] "STARTing cell.. 266 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0303 0.1029 0.0696 0.1261 0.1561 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 266"
[1] "ENDing cell.. 266 With feature... Vol2surf"
[1] "STARTing cell.. 116 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.191 0.251 0.342 0.382 0.463 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 116"
[1] "ENDing cell.. 116 With feature... Vol2surf"
[1] "STARTing cell.. 176 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.356 0.34 0.341 0.447 0.156 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 176"
[1] "ENDing cell.. 176 With feature... Vol2surf"
[1] "STARTing cell.. 235 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0907 -0.1037 -0.0713 -0.0474 -0.0951 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 235"
[1] "ENDing cell.. 235 With feature... Vol2surf"
[1] "STARTing cell.. 38 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0942 0.1817 0.2362 0.3336 0.3795 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 38"
[1] "ENDing cell.. 38 With feature... Vol2surf"
[1] "STARTing cell.. 105 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.299 -0.304 -0.253 -0.223 -0.163 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 105"
[1] "ENDing cell.. 105 With feature... Vol2surf"
[1] "STARTing cell.. 193 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0546 0.0666 0.2149 0.2782 0.3197 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 193"
[1] "ENDing cell.. 193 With feature... Vol2surf"
[1] "STARTing cell.. 181 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0673 -0.1156 -0.1632 -0.1023 -0.137 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 181"
[1] "ENDing cell.. 181 With feature... Vol2surf"
[1] "STARTing cell.. 28 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0227 -0.0312 0.0682 0.0737 0.1413 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 28"
[1] "ENDing cell.. 28 With feature... Vol2surf"
[1] "STARTing cell.. 98 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0204 0.0265 0.1507 0.2146 0.2362 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 98"
[1] "ENDing cell.. 98 With feature... Vol2surf"
[1] "STARTing cell.. 200 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.1737 -0.1296 -0.0026 0.0641 0.1465 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 200"
[1] "ENDing cell.. 200 With feature... Vol2surf"
[1] "STARTing cell.. 209 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.366 -0.362 -0.36 -0.324 -0.294 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 209"
[1] "ENDing cell.. 209 With feature... Vol2surf"
[1] "STARTing cell.. 278 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.221 -0.279 -0.266 -0.357 -0.368 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 278"
[1] "ENDing cell.. 278 With feature... Vol2surf"
[1] "STARTing cell.. 75 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0391 0.0328 0.0872 0.1224 0.1991 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 75"
[1] "ENDing cell.. 75 With feature... Vol2surf"
[1] "STARTing cell.. 141 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.323 0.175 0.153 0.131 0.158 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 141"
[1] "ENDing cell.. 141 With feature... Vol2surf"
[1] "STARTing cell.. 259 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0897 0.1584 0.141 0.2215 0.2432 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 259"
[1] "ENDing cell.. 259 With feature... Vol2surf"
[1] "STARTing cell.. 16 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.221 0.236 0.229 0.284 0.331 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 16"
[1] "ENDing cell.. 16 With feature... Vol2surf"
[1] "STARTing cell.. 267 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.00901 -0.09242 -0.17304 -0.2413 -0.31684 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 267"
[1] "ENDing cell.. 267 With feature... Vol2surf"
[1] "STARTing cell.. 201 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0909 0.2299 0.2909 0.2767 0.3063 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 201"
[1] "ENDing cell.. 201 With feature... Vol2surf"
[1] "STARTing cell.. 117 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.265 -0.297 -0.304 -0.386 -0.466 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 117"
[1] "ENDing cell.. 117 With feature... Vol2surf"
[1] "STARTing cell.. 177 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0357 0.0139 -0.0456 0.1216 0.1194 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 177"
[1] "ENDing cell.. 177 With feature... Vol2surf"
[1] "STARTing cell.. 15 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.61 -0.537 -0.487 -0.441 -0.323 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 15"
[1] "ENDing cell.. 15 With feature... Vol2surf"
[1] "STARTing cell.. 106 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.108 0.131 0.2 0.256 0.349 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 106"
[1] "ENDing cell.. 106 With feature... Vol2surf"
[1] "STARTing cell.. 194 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0933 0.0797 0.0654 0.1773 0.1576 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 194"
[1] "ENDing cell.. 194 With feature... Vol2surf"
[1] "STARTing cell.. 31 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.209 -0.301 -0.237 -0.226 -0.123 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 31"
[1] "ENDing cell.. 31 With feature... Vol2surf"
[1] "STARTing cell.. 77 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0242 0.0534 -0.1434 0.0821 -0.1598 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 77"
[1] "ENDing cell.. 77 With feature... Vol2surf"
[1] "STARTing cell.. 91 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0743 0.044 0.1383 0.0882 -0.0192 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 91"
[1] "ENDing cell.. 91 With feature... Vol2surf"
[1] "STARTing cell.. 142 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.159 -0.196 -0.249 -0.157 -0.159 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 142"
[1] "ENDing cell.. 142 With feature... Vol2surf"
[1] "STARTing cell.. 17 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0337 0.0585 0.0509 0.1028 0.1908 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 17"
[1] "ENDing cell.. 17 With feature... Vol2surf"
[1] "STARTing cell.. 62 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0521 -0.1951 -0.1582 -0.09 -0.2124 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 62"
[1] "ENDing cell.. 62 With feature... Vol2surf"
[1] "STARTing cell.. 168 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.334 0.333 0.384 0.47 0.459 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 168"
[1] "ENDing cell.. 168 With feature... Vol2surf"
[1] "STARTing cell.. 127 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0583 -0.1041 -0.1749 -0.2719 -0.2484 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 127"
[1] "ENDing cell.. 127 With feature... Vol2surf"
[1] "STARTing cell.. 253 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.1291 0.1082 0.059 -0.003 -0.0723 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 253"
[1] "ENDing cell.. 253 With feature... Vol2surf"
[1] "STARTing cell.. 118 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.34 -0.345 -0.319 -0.256 -0.207 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 118"
[1] "ENDing cell.. 118 With feature... Vol2surf"
[1] "STARTing cell.. 39 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.149 0.196 0.175 0.224 0.129 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 39"
[1] "ENDing cell.. 39 With feature... Vol2surf"
[1] "STARTing cell.. 107 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.232 0.271 0.334 0.41 0.475 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 107"
[1] "ENDing cell.. 107 With feature... Vol2surf"
[1] "STARTing cell.. 196 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0272 0.081 -0.2241 -0.2749 -0.1958 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 196"
[1] "ENDing cell.. 196 With feature... Vol2surf"
[1] "STARTing cell.. 212 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.104 0.196 0.227 0.267 0.232 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 212"
[1] "ENDing cell.. 212 With feature... Vol2surf"
[1] "STARTing cell.. 79 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0667 -0.0265 0.06 0.1065 0.1261 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 79"
[1] "ENDing cell.. 79 With feature... Vol2surf"
[1] "STARTing cell.. 143 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.152 -0.1466 -0.1345 -0.1013 -0.0758 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 143"
[1] "ENDing cell.. 143 With feature... Vol2surf"
[1] "STARTing cell.. 92 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0483 0.1019 0.073 0.0359 0.0632 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 92"
[1] "ENDing cell.. 92 With feature... Vol2surf"
[1] "STARTing cell.. 169 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.191 -0.143 -0.269 -0.26 -0.404 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 169"
[1] "ENDing cell.. 169 With feature... Vol2surf"
[1] "STARTing cell.. 254 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0602 -0.0211 -0.1595 -0.1363 -0.1836 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 254"
[1] "ENDing cell.. 254 With feature... Vol2surf"
[1] "STARTing cell.. 269 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0445 0.0157 0.0517 0.1504 0.136 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 269"
[1] "ENDing cell.. 269 With feature... Vol2surf"
[1] "STARTing cell.. 119 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.552 -0.453 -0.413 -0.281 -0.216 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 119"
[1] "ENDing cell.. 119 With feature... Vol2surf"
[1] "STARTing cell.. 180 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.074429 0.000368 0.060866 0.175443 0.159241 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 180"
[1] "ENDing cell.. 180 With feature... Vol2surf"
[1] "STARTing cell.. 151 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0466 -0.0218 -0.1176 -0.2121 -0.0993 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 151"
[1] "ENDing cell.. 151 With feature... Vol2surf"
[1] "STARTing cell.. 40 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.222 -0.202 -0.141 -0.104 -0.114 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 40"
[1] "ENDing cell.. 40 With feature... Vol2surf"
[1] "STARTing cell.. 191 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.472 -0.351 -0.208 -0.177 -0.33 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 191"
[1] "ENDing cell.. 191 With feature... Vol2surf"
[1] "STARTing cell.. 108 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0703 0.0389 0.0917 0.1364 0.2999 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 108"
[1] "ENDing cell.. 108 With feature... Vol2surf"
[1] "STARTing cell.. 198 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.12895 0.20699 -0.00491 -0.20572 0.04518 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 198"
[1] "ENDing cell.. 198 With feature... Vol2surf"
[1] "STARTing cell.. 144 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.125 -0.155 -0.172 -0.204 -0.206 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 144"
[1] "ENDing cell.. 144 With feature... Vol2surf"
[1] "STARTing cell.. 170 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0482 0.0817 0.0683 0.2314 0.105 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 170"
[1] "ENDing cell.. 170 With feature... Vol2surf"
[1] "STARTing cell.. 270 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.00822 -0.12611 -0.1704 -0.1724 -0.24413 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 270"
[1] "ENDing cell.. 270 With feature... Vol2surf"
[1] "STARTing cell.. 41 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.07093 0.00968 0.0364 0.0087 -0.06164 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 41"
[1] "ENDing cell.. 41 With feature... Vol2surf"
[1] "STARTing cell.. 154 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.326 -0.366 -0.382 -0.391 -0.346 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 154"
[1] "ENDing cell.. 154 With feature... Vol2surf"
[1] "STARTing cell.. 90 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.382 -0.472 -0.473 -0.435 -0.347 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 90"
[1] "ENDing cell.. 90 With feature... Vol2surf"
[1] "STARTing cell.. 145 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0907 -0.1503 -0.2048 -0.2447 -0.3056 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 145"
[1] "ENDing cell.. 145 With feature... Vol2surf"
[1] "STARTing cell.. 271 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.2769 0.1581 0.0514 -0.0215 0.0805 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 271"
[1] "ENDing cell.. 271 With feature... Vol2surf"
[1] "STARTing cell.. 183 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.227 -0.243 -0.201 -0.244 -0.227 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 183"
[1] "ENDing cell.. 183 With feature... Vol2surf"
[1] "STARTing cell.. 147 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.142 0.176 0.263 0.32 0.384 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 147"
[1] "ENDing cell.. 147 With feature... Vol2surf"
[1] "STARTing cell.. 178 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.199 0.0699 -0.0856 -0.0127 -0.075 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 178"
[1] "ENDing cell.. 178 With feature... Vol2surf"
[1] "STARTing cell.. 272 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.104801 0.078757 0.073136 -0.054591 0.000914 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 272"
[1] "ENDing cell.. 272 With feature... Vol2surf"
[1] "STARTing cell.. 43 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0128 -0.0174 0.0441 0.1168 0.1466 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 43"
[1] "ENDing cell.. 43 With feature... Vol2surf"
[1] "STARTing cell.. 99 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.05515 -0.00745 0.08833 0.20005 0.31595 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 99"
[1] "ENDing cell.. 99 With feature... Vol2surf"
[1] "STARTing cell.. 155 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.164 -0.204 -0.134 -0.227 -0.379 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 155"
[1] "ENDing cell.. 155 With feature... Vol2surf"
[1] "STARTing cell.. 148 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.1116 -0.1013 -0.0582 -0.0738 -0.1012 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 148"
[1] "ENDing cell.. 148 With feature... Vol2surf"
[1] "STARTing cell.. 215 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0848 -0.0103 0.0389 0.0839 0.1005 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 215"
[1] "ENDing cell.. 215 With feature... Vol2surf"
[1] "STARTing cell.. 149 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0268 0.1726 0.142 0.2061 0.1455 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 149"
[1] "ENDing cell.. 149 With feature... Vol2surf"
[1] "STARTing cell.. 89 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0341 -0.0565 -0.1349 -0.2335 -0.2339 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 89"
[1] "ENDing cell.. 89 With feature... Vol2surf"
[1] "STARTing cell.. 156 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0116 0.015 0.0713 -0.0524 -0.0643 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 156"
[1] "ENDing cell.. 156 With feature... Vol2surf"
[1] "STARTing cell.. 150 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0398 0.074 0.085 0.1255 0.1297 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 150"
[1] "ENDing cell.. 150 With feature... Vol2surf"
[1] "STARTing cell.. 42 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.1933 -0.0929 -0.2284 -0.3268 -0.4652 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 42"
[1] "ENDing cell.. 42 With feature... Vol2surf"
[1] "STARTing cell.. 44 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.125 0.147 0.159 0.144 0.119 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 44"
[1] "ENDing cell.. 44 With feature... Vol2surf"
[1] "STARTing cell.. 100 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0816 0.1388 0.2903 -0.0386 0.0837 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 100"
[1] "ENDing cell.. 100 With feature... Vol2surf"
[1] "STARTing cell.. 153 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.187 0.252 0.323 0.409 0.492 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 153"
[1] "ENDing cell.. 153 With feature... Vol2surf"
[1] "STARTing cell.. 47 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.00694 -0.12403 -0.07124 -0.03634 0.07673 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 47"
[1] "ENDing cell.. 47 With feature... Vol2surf"
[1] "STARTing cell.. 202 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0943 -0.1627 -0.0572 -0.1188 0.195 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 202"
[1] "ENDing cell.. 202 With feature... Vol2surf"
[1] "STARTing cell.. 51 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0833 -0.1274 -0.184 -0.2755 -0.3747 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 51"
[1] "ENDing cell.. 51 With feature... Vol2surf"
[1] "STARTing cell.. 260 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.178 -0.327 -0.183 -0.327 -0.224 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 260"
[1] "ENDing cell.. 260 With feature... Vol2surf"
[1] "STARTing cell.. 217 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0578 -0.1654 -0.2471 -0.2604 -0.3699 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 217"
[1] "ENDing cell.. 217 With feature... Vol2surf"
[1] "STARTing cell.. 182 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0233 0.0215 0.0493 0.077 0.1701 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 182"
[1] "ENDing cell.. 182 With feature... Vol2surf"
[1] "STARTing cell.. 184 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0236 0.0702 -0.0261 -0.071 -0.2332 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 184"
[1] "ENDing cell.. 184 With feature... Vol2surf"
[1] "STARTing cell.. 45 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0898 0.0546 0.0507 0.1611 0.2241 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 45"
[1] "ENDing cell.. 45 With feature... Vol2surf"
[1] "STARTing cell.. 241 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.021272 -0.006979 0.000126 0.098642 0.05186 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 241"
[1] "ENDing cell.. 241 With feature... Vol2surf"
[1] "STARTing cell.. 82 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.436 -0.482 -0.415 -0.514 -0.469 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 82"
[1] "ENDing cell.. 82 With feature... Vol2surf"
[1] "STARTing cell.. 261 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.05886 -0.02009 0.03269 -0.00918 0.02135 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 261"
[1] "ENDing cell.. 261 With feature... Vol2surf"
[1] "STARTing cell.. 262 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.09022 -0.03087 0.02682 -0.02563 0.00551 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 262"
[1] "ENDing cell.. 262 With feature... Vol2surf"
[1] "STARTing cell.. 216 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.1189 -0.0526 -0.0852 -0.0741 -0.1241 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 216"
[1] "ENDing cell.. 216 With feature... Vol2surf"
[1] "STARTing cell.. 66 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0287 0.1118 0.1364 0.2965 0.3289 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 66"
[1] "ENDing cell.. 66 With feature... Vol2surf"
[1] "STARTing cell.. 128 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0363 0.0371 0.1132 0.0664 0.1772 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 128"
[1] "ENDing cell.. 128 With feature... Vol2surf"
[1] "STARTing cell.. 50 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.1628 -0.1238 -0.1511 -0.1517 -0.0458 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 50"
[1] "ENDing cell.. 50 With feature... Vol2surf"
[1] "STARTing cell.. 5 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.148 0.233 0.288 0.101 0.107 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 5"
[1] "ENDing cell.. 5 With feature... Vol2surf"
[1] "STARTing cell.. 26 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.038 -0.0622 -0.0973 -0.1068 -0.0263 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 26"
[1] "ENDing cell.. 26 With feature... Vol2surf"
[1] "STARTing cell.. 129 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.1328 -0.1576 -0.0951 -0.0884 -0.1065 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 129"
[1] "ENDing cell.. 129 With feature... Vol2surf"
[1] "STARTing cell.. 67 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.038 -0.0245 -0.0056 0.1791 0.1813 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 67"
[1] "ENDing cell.. 67 With feature... Vol2surf"
[1] "STARTing cell.. 247 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.20403 -0.14752 -0.0871 -0.08427 -0.00766 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 247"
[1] "ENDing cell.. 247 With feature... Vol2surf"
[1] "STARTing cell.. 134 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.17014 -0.08537 0.00588 0.00546 0.06277 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 134"
[1] "ENDing cell.. 134 With feature... Vol2surf"
[1] "STARTing cell.. 93 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0734 -0.0979 -0.1153 -0.2136 -0.2631 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 93"
[1] "ENDing cell.. 93 With feature... Vol2surf"
[1] "STARTing cell.. 248 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.1412 0.2509 0.0995 0.1294 0.0991 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 248"
[1] "ENDing cell.. 248 With feature... Vol2surf"
[1] "STARTing cell.. 157 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.1008 -0.0546 -0.0639 -0.0777 -0.1249 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 157"
[1] "ENDing cell.. 157 With feature... Vol2surf"
[1] "STARTing cell.. 46 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.177 0.226 0.307 0.435 0.447 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 46"
[1] "ENDing cell.. 46 With feature... Vol2surf"
[1] "STARTing cell.. 242 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.1261 -0.011 -0.025 0.0541 0.0384 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 242"
[1] "ENDing cell.. 242 With feature... Vol2surf"
[1] "STARTing cell.. 159 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.1221 -0.1955 -0.1533 -0.1371 -0.0711 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 159"
[1] "ENDing cell.. 159 With feature... Vol2surf"
[1] "STARTing cell.. 186 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0725 0.1722 -0.2018 -0.3332 -0.0752 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 186"
[1] "ENDing cell.. 186 With feature... Vol2surf"
[1] "STARTing cell.. 228 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.2558 -0.1701 -0.3115 -0.0903 -0.118 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 228"
[1] "ENDing cell.. 228 With feature... Vol2surf"
[1] "STARTing cell.. 160 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.1825 0.237 0.262 0.1522 0.0749 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 160"
[1] "ENDing cell.. 160 With feature... Vol2surf"
[1] "STARTing cell.. 279 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.1266 0.0194 -0.1304 -0.1276 -0.1571 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 279"
[1] "ENDing cell.. 279 With feature... Vol2surf"
[1] "STARTing cell.. 53 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0579 0.08295 0.00443 0.06675 0.2082 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 53"
[1] "ENDing cell.. 53 With feature... Vol2surf"
[1] "STARTing cell.. 94 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.03269 0.00684 0.05072 0.23729 0.32456 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 94"
[1] "ENDing cell.. 94 With feature... Vol2surf"
[1] "STARTing cell.. 121 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0878 0.0405 0.1544 0.1627 0.1216 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 121"
[1] "ENDing cell.. 121 With feature... Vol2surf"
[1] "STARTing cell.. 213 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.1497 -0.1988 -0.132 -0.0779 -0.0616 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 213"
[1] "ENDing cell.. 213 With feature... Vol2surf"
[1] "STARTing cell.. 109 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.0384 0.1296 0.1972 0.1505 0.2433 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 109"
[1] "ENDing cell.. 109 With feature... Vol2surf"
[1] "STARTing cell.. 110 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.00133 0.09214 0.18784 0.05954 0.03443 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 110"
[1] "ENDing cell.. 110 With feature... Vol2surf"
[1] "STARTing cell.. 101 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.2625 0.2626 0.1239 0.1307 0.0587 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 101"
[1] "ENDing cell.. 101 With feature... Vol2surf"
[1] "STARTing cell.. 187 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.1509 -0.139 -0.1461 -0.0592 0.0195 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 187"
[1] "ENDing cell.. 187 With feature... Vol2surf"
[1] "STARTing cell.. 263 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.1048 0.1039 0.1106 -0.1288 -0.0722 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 263"
[1] "ENDing cell.. 263 With feature... Vol2surf"
[1] "STARTing cell.. 218 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0668 -0.2229 -0.1458 -0.0148 0.0797 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 218"
[1] "ENDing cell.. 218 With feature... Vol2surf"
[1] "STARTing cell.. 19 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] 0.3177 0.1494 0.1087 0.1999 0.0897 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 19"
[1] "ENDing cell.. 19 With feature... Vol2surf"
[1] "STARTing cell.. 20 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0723 -0.1039 -0.1497 0.0151 0.1704 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 20"
[1] "ENDing cell.. 20 With feature... Vol2surf"
[1] "STARTing cell.. 224 With feature... Vol2surf"
List of 6
$ acf : num [1:27, 1, 1] -0.0988 -0.2267 -0.2443 -0.3082 -0.3923 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 224"
[1] "ENDing cell.. 224 With feature... Vol2surf"
[1] "STARTing cell.. 219 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0865 0.138 0.1944 0.2632 0.3372 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 219"
[1] "ENDing cell.. 219 With feature... xCoord"
[1] "STARTing cell.. 264 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0496 0.1083 0.1243 0.2001 0.2838 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 264"
[1] "ENDing cell.. 264 With feature... xCoord"
[1] "STARTing cell.. 136 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0373 -0.0318 -0.0343 -0.0133 0.0277 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 136"
[1] "ENDing cell.. 136 With feature... xCoord"
[1] "STARTing cell.. 54 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0912 -0.0101 0.0564 0.1303 0.1991 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 54"
[1] "ENDing cell.. 54 With feature... xCoord"
[1] "STARTing cell.. 69 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.00433 0.04087 0.12236 0.17623 0.22719 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 69"
[1] "ENDing cell.. 69 With feature... xCoord"
[1] "STARTing cell.. 111 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.189 0.255 0.313 0.382 0.455 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 111"
[1] "ENDing cell.. 111 With feature... xCoord"
[1] "STARTing cell.. 189 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.00164 0.09267 0.06006 0.00524 0.09075 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 189"
[1] "ENDing cell.. 189 With feature... xCoord"
[1] "STARTing cell.. 171 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.16 0.225 0.291 0.357 0.425 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 171"
[1] "ENDing cell.. 171 With feature... xCoord"
[1] "STARTing cell.. 231 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.33708 -0.22642 -0.13204 -0.04891 0.00519 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 231"
[1] "ENDing cell.. 231 With feature... xCoord"
[1] "STARTing cell.. 205 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.15224 -0.12485 -0.06984 0.00556 0.06189 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 205"
[1] "ENDing cell.. 205 With feature... xCoord"
[1] "STARTing cell.. 244 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0449 0.0736 0.1121 0.178 0.2383 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 244"
[1] "ENDing cell.. 244 With feature... xCoord"
[1] "STARTing cell.. 1 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0207 0.0409 0.0029 -0.0603 0.0595 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 1"
[1] "ENDing cell.. 1 With feature... xCoord"
[1] "STARTing cell.. 36 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.268 -0.369 -0.242 -0.308 -0.217 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 36"
[1] "ENDing cell.. 36 With feature... xCoord"
[1] "STARTing cell.. 7 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0414 0.0773 0.1295 0.1934 0.2641 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 7"
[1] "ENDing cell.. 7 With feature... xCoord"
[1] "STARTing cell.. 102 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.145 0.221 0.297 0.379 0.44 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 102"
[1] "ENDing cell.. 102 With feature... xCoord"
[1] "STARTing cell.. 22 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1113 -0.0421 0.0449 0.1173 0.2481 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 22"
[1] "ENDing cell.. 22 With feature... xCoord"
[1] "STARTing cell.. 188 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.056 0.0123 -0.0822 -0.0132 0.0289 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 188"
[1] "ENDing cell.. 188 With feature... xCoord"
[1] "STARTing cell.. 55 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2183 -0.223 -0.2013 -0.1388 -0.0945 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 55"
[1] "ENDing cell.. 55 With feature... xCoord"
[1] "STARTing cell.. 243 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.386 -0.369 -0.296 -0.223 -0.113 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 243"
[1] "ENDing cell.. 243 With feature... xCoord"
[1] "STARTing cell.. 123 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0248 0.0477 0.1186 0.2033 0.2739 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 123"
[1] "ENDing cell.. 123 With feature... xCoord"
[1] "STARTing cell.. 21 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1397 -0.158 -0.1396 -0.106 0.0149 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 21"
[1] "ENDing cell.. 21 With feature... xCoord"
[1] "STARTing cell.. 163 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1855 -0.1683 -0.1071 -0.0209 0.0663 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 163"
[1] "ENDing cell.. 163 With feature... xCoord"
[1] "STARTing cell.. 112 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0764 0.1417 0.2131 0.2874 0.3647 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 112"
[1] "ENDing cell.. 112 With feature... xCoord"
[1] "STARTing cell.. 33 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.107 0.183 0.26 0.325 0.445 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 33"
[1] "ENDing cell.. 33 With feature... xCoord"
[1] "STARTing cell.. 172 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1757 -0.1262 0.044 0.0228 0.0201 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 172"
[1] "ENDing cell.. 172 With feature... xCoord"
[1] "STARTing cell.. 95 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0631 0.1475 0.241 0.3417 0.4117 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 95"
[1] "ENDing cell.. 95 With feature... xCoord"
[1] "STARTing cell.. 30 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0591 0.053 0.1271 0.167 0.2187 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 30"
[1] "ENDing cell.. 30 With feature... xCoord"
[1] "STARTing cell.. 203 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.175 -0.181 -0.265 -0.242 -0.08 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 203"
[1] "ENDing cell.. 203 With feature... xCoord"
[1] "STARTing cell.. 274 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.067 -0.0833 -0.2023 -0.0763 -0.0646 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 274"
[1] "ENDing cell.. 274 With feature... xCoord"
[1] "STARTing cell.. 131 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.033 0.107 0.2 0.282 0.297 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 131"
[1] "ENDing cell.. 131 With feature... xCoord"
[1] "STARTing cell.. 68 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0591 0.0564 0.0475 0.1066 0.1675 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 68"
[1] "ENDing cell.. 68 With feature... xCoord"
[1] "STARTing cell.. 71 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0291 0.0601 0.1038 0.1284 0.1541 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 71"
[1] "ENDing cell.. 71 With feature... xCoord"
[1] "STARTing cell.. 135 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.391 -0.321 -0.339 -0.285 -0.261 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 135"
[1] "ENDing cell.. 135 With feature... xCoord"
[1] "STARTing cell.. 84 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2573 -0.2055 -0.1756 -0.131 -0.0635 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 84"
[1] "ENDing cell.. 84 With feature... xCoord"
[1] "STARTing cell.. 206 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.173 0.147 0.124 0.153 0.208 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 206"
[1] "ENDing cell.. 206 With feature... xCoord"
[1] "STARTing cell.. 255 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.21123 -0.00126 -0.07932 -0.03868 -0.15583 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 255"
[1] "ENDing cell.. 255 With feature... xCoord"
[1] "STARTing cell.. 64 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0352 0.0364 0.0228 0.0429 0.1149 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 64"
[1] "ENDing cell.. 64 With feature... xCoord"
[1] "STARTing cell.. 9 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.104 0.127 0.128 0.145 0.207 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 9"
[1] "ENDing cell.. 9 With feature... xCoord"
[1] "STARTing cell.. 122 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.3348 -0.3008 -0.2674 -0.1215 -0.0634 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 122"
[1] "ENDing cell.. 122 With feature... xCoord"
[1] "STARTing cell.. 23 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.055 -0.0488 0.0751 0.1039 0.1349 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 23"
[1] "ENDing cell.. 23 With feature... xCoord"
[1] "STARTing cell.. 162 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0287 0.094 0.1556 0.2374 0.2243 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 162"
[1] "ENDing cell.. 162 With feature... xCoord"
[1] "STARTing cell.. 229 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.279 -0.201 -0.154 -0.103 -0.022 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 229"
[1] "ENDing cell.. 229 With feature... xCoord"
[1] "STARTing cell.. 57 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0384 0.1001 0.2699 0.3163 0.3685 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 57"
[1] "ENDing cell.. 57 With feature... xCoord"
[1] "STARTing cell.. 249 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.3583 -0.326 -0.246 -0.1738 -0.0375 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 249"
[1] "ENDing cell.. 249 With feature... xCoord"
[1] "STARTing cell.. 125 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.074 -0.042 0.1437 0.0689 0.1385 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 125"
[1] "ENDing cell.. 125 With feature... xCoord"
[1] "STARTing cell.. 8 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0873 0.1018 0.1484 0.204 0.3194 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 8"
[1] "ENDing cell.. 8 With feature... xCoord"
[1] "STARTing cell.. 165 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0451 -0.0346 0.0396 0.0505 0.1079 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 165"
[1] "ENDing cell.. 165 With feature... xCoord"
[1] "STARTing cell.. 83 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.143 0.187 0.219 0.251 0.302 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 83"
[1] "ENDing cell.. 83 With feature... xCoord"
[1] "STARTing cell.. 113 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.042 0.123 0.208 0.26 0.334 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 113"
[1] "ENDing cell.. 113 With feature... xCoord"
[1] "STARTing cell.. 220 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.136 0.225 0.312 0.393 0.464 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 220"
[1] "ENDing cell.. 220 With feature... xCoord"
[1] "STARTing cell.. 174 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.242 -0.226 -0.203 -0.168 -0.138 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 174"
[1] "ENDing cell.. 174 With feature... xCoord"
[1] "STARTing cell.. 56 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.134 0.204 0.255 0.314 0.401 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 56"
[1] "ENDing cell.. 56 With feature... xCoord"
[1] "STARTing cell.. 173 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0173 0.07 0.1724 0.2101 0.3801 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 173"
[1] "ENDing cell.. 173 With feature... xCoord"
[1] "STARTing cell.. 232 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.151 0.22 0.315 0.355 0.436 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 232"
[1] "ENDing cell.. 232 With feature... xCoord"
[1] "STARTing cell.. 37 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1018 -0.111 -0.1078 -0.027 -0.0188 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 37"
[1] "ENDing cell.. 37 With feature... xCoord"
[1] "STARTing cell.. 86 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0509 -0.02351 0.03185 -0.00937 -0.16493 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 86"
[1] "ENDing cell.. 86 With feature... xCoord"
[1] "STARTing cell.. 103 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0922 0.1596 0.1786 0.2411 0.2622 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 103"
[1] "ENDing cell.. 103 With feature... xCoord"
[1] "STARTing cell.. 208 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.01266 -0.02445 -0.00866 0.04088 0.04437 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 208"
[1] "ENDing cell.. 208 With feature... xCoord"
[1] "STARTing cell.. 190 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.055 0.0774 0.1558 0.2239 0.2263 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 190"
[1] "ENDing cell.. 190 With feature... xCoord"
[1] "STARTing cell.. 4 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0976 0.1656 0.2332 0.3001 0.3636 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 4"
[1] "ENDing cell.. 4 With feature... xCoord"
[1] "STARTing cell.. 238 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.102216 0.11558 0.000729 0.114287 0.087655 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 238"
[1] "ENDing cell.. 238 With feature... xCoord"
[1] "STARTing cell.. 11 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0125 0.0848 0.1513 0.2199 0.2897 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 11"
[1] "ENDing cell.. 11 With feature... xCoord"
[1] "STARTing cell.. 29 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0876 0.0545 0.0656 0.1107 0.1478 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 29"
[1] "ENDing cell.. 29 With feature... xCoord"
[1] "STARTing cell.. 59 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.268 -0.346 -0.194 -0.151 -0.153 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 59"
[1] "ENDing cell.. 59 With feature... xCoord"
[1] "STARTing cell.. 96 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2842 -0.2572 -0.2449 -0.1623 -0.0812 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 96"
[1] "ENDing cell.. 96 With feature... xCoord"
[1] "STARTing cell.. 204 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1894 -0.1167 -0.0824 0.0386 0.1001 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 204"
[1] "ENDing cell.. 204 With feature... xCoord"
[1] "STARTing cell.. 275 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1778 -0.0752 0.0383 0.1431 0.2124 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 275"
[1] "ENDing cell.. 275 With feature... xCoord"
[1] "STARTing cell.. 130 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0671 -0.0176 -0.0148 0.0495 -0.0361 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 130"
[1] "ENDing cell.. 130 With feature... xCoord"
[1] "STARTing cell.. 137 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.10522 -0.03177 -0.01527 -0.00928 0.04408 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 137"
[1] "ENDing cell.. 137 With feature... xCoord"
[1] "STARTing cell.. 140 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0922 0.1609 0.2514 0.301 0.3124 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 140"
[1] "ENDing cell.. 140 With feature... xCoord"
[1] "STARTing cell.. 226 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0129 0.0219 0.0604 0.1748 0.2548 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 226"
[1] "ENDing cell.. 226 With feature... xCoord"
[1] "STARTing cell.. 74 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.102 0.183 0.242 0.28 0.314 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 74"
[1] "ENDing cell.. 74 With feature... xCoord"
[1] "STARTing cell.. 256 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0288 0.0809 0.0674 0.158 0.1232 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 256"
[1] "ENDing cell.. 256 With feature... xCoord"
[1] "STARTing cell.. 65 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.169 0.124 0.138 0.178 0.193 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 65"
[1] "ENDing cell.. 65 With feature... xCoord"
[1] "STARTing cell.. 87 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0984 -0.0577 0.0315 0.1344 0.2131 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 87"
[1] "ENDing cell.. 87 With feature... xCoord"
[1] "STARTing cell.. 124 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1879 -0.1166 -0.0209 0.0526 0.1137 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 124"
[1] "ENDing cell.. 124 With feature... xCoord"
[1] "STARTing cell.. 210 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.1 0.14 0.213 0.268 0.296 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 210"
[1] "ENDing cell.. 210 With feature... xCoord"
[1] "STARTing cell.. 164 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1718 -0.0445 -0.0101 0.1801 0.1331 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 164"
[1] "ENDing cell.. 164 With feature... xCoord"
[1] "STARTing cell.. 230 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.234 -0.192 -0.155 -0.17 -0.148 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 230"
[1] "ENDing cell.. 230 With feature... xCoord"
[1] "STARTing cell.. 13 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.09111 -0.00527 0.08636 0.14218 0.21368 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 13"
[1] "ENDing cell.. 13 With feature... xCoord"
[1] "STARTing cell.. 250 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0466 0.0467 -0.1422 -0.0535 -0.1611 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 250"
[1] "ENDing cell.. 250 With feature... xCoord"
[1] "STARTing cell.. 10 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0654 -0.2256 -0.2049 -0.1326 -0.1825 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 10"
[1] "ENDing cell.. 10 With feature... xCoord"
[1] "STARTing cell.. 85 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.05219 0.03366 -0.00233 0.04848 0.14507 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 85"
[1] "ENDing cell.. 85 With feature... xCoord"
[1] "STARTing cell.. 61 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.139 0.181 0.243 0.308 0.369 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 61"
[1] "ENDing cell.. 61 With feature... xCoord"
[1] "STARTing cell.. 221 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.206 0.264 0.262 0.29 0.286 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 221"
[1] "ENDing cell.. 221 With feature... xCoord"
[1] "STARTing cell.. 265 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1925 -0.1105 -0.1776 -0.0388 -0.0199 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 265"
[1] "ENDing cell.. 265 With feature... xCoord"
[1] "STARTing cell.. 58 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.105 0.201 0.245 0.299 0.436 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 58"
[1] "ENDing cell.. 58 With feature... xCoord"
[1] "STARTing cell.. 114 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2086 -0.1523 -0.3648 -0.0506 -0.0687 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 114"
[1] "ENDing cell.. 114 With feature... xCoord"
[1] "STARTing cell.. 233 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0267 0.0682 0.1106 0.1414 0.2199 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 233"
[1] "ENDing cell.. 233 With feature... xCoord"
[1] "STARTing cell.. 246 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0736 -0.0961 -0.0655 0.0126 0.0864 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 246"
[1] "ENDing cell.. 246 With feature... xCoord"
[1] "STARTing cell.. 104 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0743 0.144 0.2046 0.2701 0.3426 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 104"
[1] "ENDing cell.. 104 With feature... xCoord"
[1] "STARTing cell.. 76 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.00741 0.09005 0.16544 0.21411 0.30787 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 76"
[1] "ENDing cell.. 76 With feature... xCoord"
[1] "STARTing cell.. 239 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0628 0.1434 0.018 0.0919 0.1302 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 239"
[1] "ENDing cell.. 239 With feature... xCoord"
[1] "STARTing cell.. 88 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0805 -0.047 -0.0516 -0.0511 -0.022 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 88"
[1] "ENDing cell.. 88 With feature... xCoord"
[1] "STARTing cell.. 211 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.205 -0.298 -0.333 -0.29 -0.304 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 211"
[1] "ENDing cell.. 211 With feature... xCoord"
[1] "STARTing cell.. 24 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0182 0.067 0.0229 0.0635 0.2925 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 24"
[1] "ENDing cell.. 24 With feature... xCoord"
[1] "STARTing cell.. 276 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.00748 0.04946 0.05568 0.19052 0.21684 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 276"
[1] "ENDing cell.. 276 With feature... xCoord"
[1] "STARTing cell.. 115 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0124 -0.0214 -0.0529 0.0281 -0.0191 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 115"
[1] "ENDing cell.. 115 With feature... xCoord"
[1] "STARTing cell.. 132 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.05345 -0.02797 0.00639 0.03076 0.07878 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 132"
[1] "ENDing cell.. 132 With feature... xCoord"
[1] "STARTing cell.. 138 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1742 -0.126 -0.1582 -0.0888 -0.0954 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 138"
[1] "ENDing cell.. 138 With feature... xCoord"
[1] "STARTing cell.. 227 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.00622 0.04947 -0.02099 0.05864 0.11698 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 227"
[1] "ENDing cell.. 227 With feature... xCoord"
[1] "STARTing cell.. 257 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.152 0.179 0.25 0.282 0.307 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 257"
[1] "ENDing cell.. 257 With feature... xCoord"
[1] "STARTing cell.. 133 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.113 0.206 0.237 0.346 0.422 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 133"
[1] "ENDing cell.. 133 With feature... xCoord"
[1] "STARTing cell.. 126 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0814 0.1331 0.2256 0.2467 0.2478 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 126"
[1] "ENDing cell.. 126 With feature... xCoord"
[1] "STARTing cell.. 78 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0539 0.1336 0.2181 0.2832 0.3496 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 78"
[1] "ENDing cell.. 78 With feature... xCoord"
[1] "STARTing cell.. 166 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.00951 -0.01541 -0.01064 -0.00117 0.08298 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 166"
[1] "ENDing cell.. 166 With feature... xCoord"
[1] "STARTing cell.. 195 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.259 -0.1552 -0.0645 0.0443 0.1891 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 195"
[1] "ENDing cell.. 195 With feature... xCoord"
[1] "STARTing cell.. 251 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1542 -0.1134 -0.0613 -0.0963 0.0713 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 251"
[1] "ENDing cell.. 251 With feature... xCoord"
[1] "STARTing cell.. 12 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.05076 -0.03131 -0.03145 0.00796 0.10193 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 12"
[1] "ENDing cell.. 12 With feature... xCoord"
[1] "STARTing cell.. 222 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.205 -0.124 -0.044 0.105 0.164 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 222"
[1] "ENDing cell.. 222 With feature... xCoord"
[1] "STARTing cell.. 60 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.076736 0.047728 -0.000453 -0.018852 0.051084 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 60"
[1] "ENDing cell.. 60 With feature... xCoord"
[1] "STARTing cell.. 63 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.126 -0.133 -0.225 -0.197 -0.21 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 63"
[1] "ENDing cell.. 63 With feature... xCoord"
[1] "STARTing cell.. 175 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2219 -0.256 -0.2374 -0.2291 -0.0836 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 175"
[1] "ENDing cell.. 175 With feature... xCoord"
[1] "STARTing cell.. 234 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0754 -0.169 -0.0737 -0.0771 -0.0536 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 234"
[1] "ENDing cell.. 234 With feature... xCoord"
[1] "STARTing cell.. 192 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0542 0.0932 0.271 0.259 0.2778 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 192"
[1] "ENDing cell.. 192 With feature... xCoord"
[1] "STARTing cell.. 240 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.00262 0.07338 0.03151 0.11945 0.11873 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 240"
[1] "ENDing cell.. 240 With feature... xCoord"
[1] "STARTing cell.. 80 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0563 0.0482 0.0511 0.1434 0.2128 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 80"
[1] "ENDing cell.. 80 With feature... xCoord"
[1] "STARTing cell.. 97 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.353 -0.347 -0.36 -0.33 -0.282 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 97"
[1] "ENDing cell.. 97 With feature... xCoord"
[1] "STARTing cell.. 207 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.215 -0.155 -0.228 -0.234 -0.142 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 207"
[1] "ENDing cell.. 207 With feature... xCoord"
[1] "STARTing cell.. 277 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.105 -0.172 -0.298 -0.205 -0.201 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 277"
[1] "ENDing cell.. 277 With feature... xCoord"
[1] "STARTing cell.. 73 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0778 0.1063 0.1289 0.2308 0.2489 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 73"
[1] "ENDing cell.. 73 With feature... xCoord"
[1] "STARTing cell.. 139 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.113 -0.0932 -0.1293 -0.1625 -0.0625 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 139"
[1] "ENDing cell.. 139 With feature... xCoord"
[1] "STARTing cell.. 258 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.235 -0.253 -0.22 -0.249 -0.248 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 258"
[1] "ENDing cell.. 258 With feature... xCoord"
[1] "STARTing cell.. 179 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0272 0.0214 0.1036 0.1476 0.1604 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 179"
[1] "ENDing cell.. 179 With feature... xCoord"
[1] "STARTing cell.. 167 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1502 -0.1384 -0.092 -0.0148 0.1095 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 167"
[1] "ENDing cell.. 167 With feature... xCoord"
[1] "STARTing cell.. 252 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.221 0.262 0.282 0.354 0.407 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 252"
[1] "ENDing cell.. 252 With feature... xCoord"
[1] "STARTing cell.. 81 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2661 -0.2879 -0.2457 -0.3403 -0.0962 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 81"
[1] "ENDing cell.. 81 With feature... xCoord"
[1] "STARTing cell.. 14 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1127 -0.1233 -0.1916 -0.1136 -0.0883 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 14"
[1] "ENDing cell.. 14 With feature... xCoord"
[1] "STARTing cell.. 199 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0308 0.1175 0.1693 0.253 0.3452 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 199"
[1] "ENDing cell.. 199 With feature... xCoord"
[1] "STARTing cell.. 266 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.06129 -0.04141 -0.09886 -0.01076 0.00813 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 266"
[1] "ENDing cell.. 266 With feature... xCoord"
[1] "STARTing cell.. 116 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1711 -0.1015 -0.0407 0.0572 0.1747 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 116"
[1] "ENDing cell.. 116 With feature... xCoord"
[1] "STARTing cell.. 176 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.104 0.181 0.24 0.338 0.371 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 176"
[1] "ENDing cell.. 176 With feature... xCoord"
[1] "STARTing cell.. 235 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0523 0.0937 0.0646 0.0937 0.1283 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 235"
[1] "ENDing cell.. 235 With feature... xCoord"
[1] "STARTing cell.. 38 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.148 -0.234 -0.31 -0.27 -0.127 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 38"
[1] "ENDing cell.. 38 With feature... xCoord"
[1] "STARTing cell.. 105 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2436 -0.1861 -0.1329 -0.0732 -0.0258 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 105"
[1] "ENDing cell.. 105 With feature... xCoord"
[1] "STARTing cell.. 193 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.014595 -0.027962 0.000991 0.021871 0.17832 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 193"
[1] "ENDing cell.. 193 With feature... xCoord"
[1] "STARTing cell.. 181 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.124 -0.114 -0.127 -0.167 -0.135 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 181"
[1] "ENDing cell.. 181 With feature... xCoord"
[1] "STARTing cell.. 28 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.1 0.232 0.312 0.369 0.369 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 28"
[1] "ENDing cell.. 28 With feature... xCoord"
[1] "STARTing cell.. 98 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.00326 -0.02084 -0.11514 -0.06197 0.01384 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 98"
[1] "ENDing cell.. 98 With feature... xCoord"
[1] "STARTing cell.. 200 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.00249 0.02477 0.05499 0.12863 0.18956 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 200"
[1] "ENDing cell.. 200 With feature... xCoord"
[1] "STARTing cell.. 209 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.511 -0.3672 -0.2601 -0.1298 -0.0185 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 209"
[1] "ENDing cell.. 209 With feature... xCoord"
[1] "STARTing cell.. 278 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0525 0.0737 0.0646 0.0833 0.1384 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 278"
[1] "ENDing cell.. 278 With feature... xCoord"
[1] "STARTing cell.. 75 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1964 -0.1347 -0.134 -0.0771 0.0286 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 75"
[1] "ENDing cell.. 75 With feature... xCoord"
[1] "STARTing cell.. 141 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0428 0.0949 0.0323 0.2183 0.2391 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 141"
[1] "ENDing cell.. 141 With feature... xCoord"
[1] "STARTing cell.. 259 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.049 0.059 0.0775 0.0786 0.053 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 259"
[1] "ENDing cell.. 259 With feature... xCoord"
[1] "STARTing cell.. 16 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.124 0.125 0.219 0.268 0.298 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 16"
[1] "ENDing cell.. 16 With feature... xCoord"
[1] "STARTing cell.. 267 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.162 0.159 0.126 0.182 0.172 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 267"
[1] "ENDing cell.. 267 With feature... xCoord"
[1] "STARTing cell.. 201 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0939 0.1581 0.2291 0.3119 0.394 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 201"
[1] "ENDing cell.. 201 With feature... xCoord"
[1] "STARTing cell.. 117 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0292 0.0131 0.0566 0.1219 0.2102 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 117"
[1] "ENDing cell.. 117 With feature... xCoord"
[1] "STARTing cell.. 177 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2868 -0.215 -0.2112 0.0824 0.0514 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 177"
[1] "ENDing cell.. 177 With feature... xCoord"
[1] "STARTing cell.. 15 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0551 0.1083 0.1622 0.2373 0.3192 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 15"
[1] "ENDing cell.. 15 With feature... xCoord"
[1] "STARTing cell.. 106 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.191 0.239 0.269 0.278 0.307 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 106"
[1] "ENDing cell.. 106 With feature... xCoord"
[1] "STARTing cell.. 194 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.309 -0.241 -0.279 -0.239 -0.211 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 194"
[1] "ENDing cell.. 194 With feature... xCoord"
[1] "STARTing cell.. 31 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.1405 0.1061 0.0201 0.1046 -0.002 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 31"
[1] "ENDing cell.. 31 With feature... xCoord"
[1] "STARTing cell.. 77 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.03055 -0.02042 -0.00445 0.04546 0.14414 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 77"
[1] "ENDing cell.. 77 With feature... xCoord"
[1] "STARTing cell.. 91 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0991 0.1747 0.2162 0.2747 0.2502 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 91"
[1] "ENDing cell.. 91 With feature... xCoord"
[1] "STARTing cell.. 142 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.3144 -0.2248 -0.2645 -0.0494 -0.0182 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 142"
[1] "ENDing cell.. 142 With feature... xCoord"
[1] "STARTing cell.. 17 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0457 0.0946 0.1511 0.2257 0.3139 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 17"
[1] "ENDing cell.. 17 With feature... xCoord"
[1] "STARTing cell.. 62 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0677 0.1339 0.2579 0.2651 0.3163 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 62"
[1] "ENDing cell.. 62 With feature... xCoord"
[1] "STARTing cell.. 168 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.176 -0.35 -0.158 -0.217 -0.11 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 168"
[1] "ENDing cell.. 168 With feature... xCoord"
[1] "STARTing cell.. 127 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.118 0.165 0.248 0.332 0.387 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 127"
[1] "ENDing cell.. 127 With feature... xCoord"
[1] "STARTing cell.. 253 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0324 0.09084 -0.00545 0.03464 0.03195 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 253"
[1] "ENDing cell.. 253 With feature... xCoord"
[1] "STARTing cell.. 118 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.05065 0.00996 -0.10234 0.08233 0.09809 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 118"
[1] "ENDing cell.. 118 With feature... xCoord"
[1] "STARTing cell.. 39 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0797 0.0627 0.026 0.0506 0.1769 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 39"
[1] "ENDing cell.. 39 With feature... xCoord"
[1] "STARTing cell.. 107 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0537 0.1259 0.1498 0.2746 0.3575 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 107"
[1] "ENDing cell.. 107 With feature... xCoord"
[1] "STARTing cell.. 196 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0835 -0.1491 -0.2081 -0.1913 -0.1134 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 196"
[1] "ENDing cell.. 196 With feature... xCoord"
[1] "STARTing cell.. 212 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.117 0.17 0.229 0.311 0.391 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 212"
[1] "ENDing cell.. 212 With feature... xCoord"
[1] "STARTing cell.. 79 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0136 0.0366 0.056 0.0948 0.1971 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 79"
[1] "ENDing cell.. 79 With feature... xCoord"
[1] "STARTing cell.. 143 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0145 0.1003 0.0538 0.228 0.2942 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 143"
[1] "ENDing cell.. 143 With feature... xCoord"
[1] "STARTing cell.. 92 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.138 -0.0985 -0.1406 -0.0907 -0.052 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 92"
[1] "ENDing cell.. 92 With feature... xCoord"
[1] "STARTing cell.. 169 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.08978 -0.00584 0.10323 0.20685 0.31198 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 169"
[1] "ENDing cell.. 169 With feature... xCoord"
[1] "STARTing cell.. 254 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.00336 0.03794 0.01698 0.05756 0.02612 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 254"
[1] "ENDing cell.. 254 With feature... xCoord"
[1] "STARTing cell.. 269 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0286 -0.0592 -0.1665 -0.1882 -0.1249 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 269"
[1] "ENDing cell.. 269 With feature... xCoord"
[1] "STARTing cell.. 119 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.15878 -0.11247 -0.0464 -0.00921 0.05482 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 119"
[1] "ENDing cell.. 119 With feature... xCoord"
[1] "STARTing cell.. 180 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1082 -0.0273 -0.1842 -0.0645 -0.0102 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 180"
[1] "ENDing cell.. 180 With feature... xCoord"
[1] "STARTing cell.. 151 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0136 0.0233 0.0603 0.1093 0.2307 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 151"
[1] "ENDing cell.. 151 With feature... xCoord"
[1] "STARTing cell.. 40 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1232 -0.0536 -0.0191 0.0785 0.1795 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 40"
[1] "ENDing cell.. 40 With feature... xCoord"
[1] "STARTing cell.. 191 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0446 -0.1096 -0.0637 0.0612 0.0895 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 191"
[1] "ENDing cell.. 191 With feature... xCoord"
[1] "STARTing cell.. 108 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.229 -0.2187 -0.1595 -0.0887 0.0563 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 108"
[1] "ENDing cell.. 108 With feature... xCoord"
[1] "STARTing cell.. 198 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.000252 -0.066306 -0.121978 -0.041174 -0.087144 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 198"
[1] "ENDing cell.. 198 With feature... xCoord"
[1] "STARTing cell.. 144 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.00694 0.03906 -0.17809 0.09783 0.03264 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 144"
[1] "ENDing cell.. 144 With feature... xCoord"
[1] "STARTing cell.. 170 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2736 -0.1005 -0.1406 0.0144 -0.0232 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 170"
[1] "ENDing cell.. 170 With feature... xCoord"
[1] "STARTing cell.. 270 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.27 -0.255 -0.335 -0.279 -0.202 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 270"
[1] "ENDing cell.. 270 With feature... xCoord"
[1] "STARTing cell.. 41 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0819 -0.0643 -0.0517 -0.0485 -0.0229 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 41"
[1] "ENDing cell.. 41 With feature... xCoord"
[1] "STARTing cell.. 154 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.00356 0.12368 0.00169 -0.08021 -0.00434 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 154"
[1] "ENDing cell.. 154 With feature... xCoord"
[1] "STARTing cell.. 90 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.3256 -0.2689 -0.1402 -0.0437 -0.0601 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 90"
[1] "ENDing cell.. 90 With feature... xCoord"
[1] "STARTing cell.. 145 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.42597 -0.33131 -0.25003 -0.12601 -0.00296 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 145"
[1] "ENDing cell.. 145 With feature... xCoord"
[1] "STARTing cell.. 271 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.00801 0.00551 0.05061 0.08947 0.13993 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 271"
[1] "ENDing cell.. 271 With feature... xCoord"
[1] "STARTing cell.. 183 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1419 -0.0876 -0.0496 0.1095 0.202 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 183"
[1] "ENDing cell.. 183 With feature... xCoord"
[1] "STARTing cell.. 147 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.04927 -0.01228 0.00565 0.01149 0.08381 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 147"
[1] "ENDing cell.. 147 With feature... xCoord"
[1] "STARTing cell.. 178 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.297 -0.26 -0.221 -0.154 -0.059 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 178"
[1] "ENDing cell.. 178 With feature... xCoord"
[1] "STARTing cell.. 272 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.139 0.207 0.264 0.307 0.375 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 272"
[1] "ENDing cell.. 272 With feature... xCoord"
[1] "STARTing cell.. 43 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.113 -0.0991 -0.0725 -0.0191 0.0609 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 43"
[1] "ENDing cell.. 43 With feature... xCoord"
[1] "STARTing cell.. 99 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2869 -0.2709 -0.2557 -0.1388 -0.0245 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 99"
[1] "ENDing cell.. 99 With feature... xCoord"
[1] "STARTing cell.. 155 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.069 0.184 0.137 0.103 0.176 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 155"
[1] "ENDing cell.. 155 With feature... xCoord"
[1] "STARTing cell.. 148 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0337 -0.0316 -0.0517 0.0284 0.0481 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 148"
[1] "ENDing cell.. 148 With feature... xCoord"
[1] "STARTing cell.. 215 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0732 -0.0103 0.0435 0.1048 0.1532 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 215"
[1] "ENDing cell.. 215 With feature... xCoord"
[1] "STARTing cell.. 149 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.161 0.243 0.297 0.381 0.476 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 149"
[1] "ENDing cell.. 149 With feature... xCoord"
[1] "STARTing cell.. 89 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0424 0.0571 -0.0111 -0.0167 0.0639 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 89"
[1] "ENDing cell.. 89 With feature... xCoord"
[1] "STARTing cell.. 156 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.3296 -0.2549 -0.2036 -0.083 0.0737 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 156"
[1] "ENDing cell.. 156 With feature... xCoord"
[1] "STARTing cell.. 150 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0844 0.00707 0.06885 0.17641 0.27734 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 150"
[1] "ENDing cell.. 150 With feature... xCoord"
[1] "STARTing cell.. 42 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.171 -0.169 -0.1961 -0.0937 -0.0848 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 42"
[1] "ENDing cell.. 42 With feature... xCoord"
[1] "STARTing cell.. 44 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.209 -0.253 -0.238 -0.142 -0.103 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 44"
[1] "ENDing cell.. 44 With feature... xCoord"
[1] "STARTing cell.. 100 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0728 0.0245 0.075 0.037 -0.0391 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 100"
[1] "ENDing cell.. 100 With feature... xCoord"
[1] "STARTing cell.. 153 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.133 0.211 0.247 0.328 0.424 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 153"
[1] "ENDing cell.. 153 With feature... xCoord"
[1] "STARTing cell.. 47 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.05933 0.00775 0.0473 -0.03387 -0.12874 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 47"
[1] "ENDing cell.. 47 With feature... xCoord"
[1] "STARTing cell.. 202 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.089 -0.0716 -0.0275 0.0858 0.2174 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 202"
[1] "ENDing cell.. 202 With feature... xCoord"
[1] "STARTing cell.. 51 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.07622 0.00973 -0.1263 0.04773 0.05046 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 51"
[1] "ENDing cell.. 51 With feature... xCoord"
[1] "STARTing cell.. 260 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0126 0.0796 0.1035 0.167 0.1853 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 260"
[1] "ENDing cell.. 260 With feature... xCoord"
[1] "STARTing cell.. 217 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.209 0.186 0.192 0.165 0.111 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 217"
[1] "ENDing cell.. 217 With feature... xCoord"
[1] "STARTing cell.. 182 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0564 0.0973 0.1472 0.2131 0.305 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 182"
[1] "ENDing cell.. 182 With feature... xCoord"
[1] "STARTing cell.. 184 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1833 -0.1333 -0.0769 -0.0179 0.0605 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 184"
[1] "ENDing cell.. 184 With feature... xCoord"
[1] "STARTing cell.. 45 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.03827 0.00951 0.13587 0.28848 0.34094 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 45"
[1] "ENDing cell.. 45 With feature... xCoord"
[1] "STARTing cell.. 241 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0466 0.1571 0.1921 0.3032 0.3909 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 241"
[1] "ENDing cell.. 241 With feature... xCoord"
[1] "STARTing cell.. 82 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0273 0.0733 0.0274 0.103 0.2252 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 82"
[1] "ENDing cell.. 82 With feature... xCoord"
[1] "STARTing cell.. 261 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.01138 -0.0123 0.00345 0.12714 -0.0115 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 261"
[1] "ENDing cell.. 261 With feature... xCoord"
[1] "STARTing cell.. 262 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.00322 0.00136 -0.04299 0.2524 0.0649 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 262"
[1] "ENDing cell.. 262 With feature... xCoord"
[1] "STARTing cell.. 216 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2266 -0.1761 -0.1591 -0.0669 -0.0324 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 216"
[1] "ENDing cell.. 216 With feature... xCoord"
[1] "STARTing cell.. 66 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1093 -0.0304 0.0321 0.0261 0.1866 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 66"
[1] "ENDing cell.. 66 With feature... xCoord"
[1] "STARTing cell.. 128 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0403 -0.1035 -0.1895 -0.2386 -0.0471 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 128"
[1] "ENDing cell.. 128 With feature... xCoord"
[1] "STARTing cell.. 50 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.04668 0.00222 0.04045 0.08274 0.05208 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 50"
[1] "ENDing cell.. 50 With feature... xCoord"
[1] "STARTing cell.. 5 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2981 -0.1978 -0.1266 -0.1244 -0.0585 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 5"
[1] "ENDing cell.. 5 With feature... xCoord"
[1] "STARTing cell.. 26 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.25 -0.1963 -0.0514 0.0504 0.1388 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 26"
[1] "ENDing cell.. 26 With feature... xCoord"
[1] "STARTing cell.. 129 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.208 -0.23 -0.218 -0.246 -0.215 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 129"
[1] "ENDing cell.. 129 With feature... xCoord"
[1] "STARTing cell.. 67 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1542 -0.1064 -0.0493 0.0312 0.1428 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 67"
[1] "ENDing cell.. 67 With feature... xCoord"
[1] "STARTing cell.. 247 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2503 -0.2063 -0.1395 -0.1159 0.0248 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 247"
[1] "ENDing cell.. 247 With feature... xCoord"
[1] "STARTing cell.. 134 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.00939 0.05617 0.09425 0.11503 0.14474 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 134"
[1] "ENDing cell.. 134 With feature... xCoord"
[1] "STARTing cell.. 93 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.1016 0.0507 -0.0257 0.05 0.0378 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 93"
[1] "ENDing cell.. 93 With feature... xCoord"
[1] "STARTing cell.. 248 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.14315 -0.08383 -0.00109 0.08661 0.15193 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 248"
[1] "ENDing cell.. 248 With feature... xCoord"
[1] "STARTing cell.. 157 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0369 0.1278 0.2227 0.2996 0.2659 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 157"
[1] "ENDing cell.. 157 With feature... xCoord"
[1] "STARTing cell.. 46 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0759 0.0279 0.157 0.1414 0.1075 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 46"
[1] "ENDing cell.. 46 With feature... xCoord"
[1] "STARTing cell.. 242 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0252 0.0467 0.0935 0.145 0.2026 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 242"
[1] "ENDing cell.. 242 With feature... xCoord"
[1] "STARTing cell.. 159 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0555 0.0955 0.1722 0.2759 0.3279 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 159"
[1] "ENDing cell.. 159 With feature... xCoord"
[1] "STARTing cell.. 186 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.145 -0.14 -0.184 -0.133 -0.082 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 186"
[1] "ENDing cell.. 186 With feature... xCoord"
[1] "STARTing cell.. 228 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1186 -0.0786 -0.0696 -0.033 -0.0352 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 228"
[1] "ENDing cell.. 228 With feature... xCoord"
[1] "STARTing cell.. 160 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.1141 0.0643 -0.0502 -0.0355 -0.0017 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 160"
[1] "ENDing cell.. 160 With feature... xCoord"
[1] "STARTing cell.. 279 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1206 -0.038 -0.1162 0.045 0.0715 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 279"
[1] "ENDing cell.. 279 With feature... xCoord"
[1] "STARTing cell.. 53 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.165854 -0.157049 -0.134888 -0.000764 -0.14518 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 53"
[1] "ENDing cell.. 53 With feature... xCoord"
[1] "STARTing cell.. 94 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0579 -0.0483 -0.0591 -0.0422 -0.1143 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 94"
[1] "ENDing cell.. 94 With feature... xCoord"
[1] "STARTing cell.. 121 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.16094 -0.00682 0.11375 -0.17295 -0.12668 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 121"
[1] "ENDing cell.. 121 With feature... xCoord"
[1] "STARTing cell.. 213 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1715 -0.1076 -0.0175 0.1022 0.2103 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 213"
[1] "ENDing cell.. 213 With feature... xCoord"
[1] "STARTing cell.. 109 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1036 -0.0638 0.0197 0.0261 0.0953 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 109"
[1] "ENDing cell.. 109 With feature... xCoord"
[1] "STARTing cell.. 110 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.11685 -0.0569 -0.05282 0.00828 0.01652 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 110"
[1] "ENDing cell.. 110 With feature... xCoord"
[1] "STARTing cell.. 101 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2987 -0.21249 -0.1901 -0.05708 0.00149 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 101"
[1] "ENDing cell.. 101 With feature... xCoord"
[1] "STARTing cell.. 187 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2605 -0.2115 -0.1093 -0.0639 0.063 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 187"
[1] "ENDing cell.. 187 With feature... xCoord"
[1] "STARTing cell.. 263 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.04042 -0.11688 -0.14809 0.08749 0.00687 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 263"
[1] "ENDing cell.. 263 With feature... xCoord"
[1] "STARTing cell.. 218 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.302 -0.276 -0.265 -0.242 -0.248 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 218"
[1] "ENDing cell.. 218 With feature... xCoord"
[1] "STARTing cell.. 19 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2593 -0.2128 -0.1358 -0.0273 0.0963 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 19"
[1] "ENDing cell.. 19 With feature... xCoord"
[1] "STARTing cell.. 20 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.3788 -0.3396 -0.2624 -0.138 -0.0125 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 20"
[1] "ENDing cell.. 20 With feature... xCoord"
[1] "STARTing cell.. 224 With feature... xCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2436 -0.162 -0.0783 0.0338 0.1274 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 224"
[1] "ENDing cell.. 224 With feature... xCoord"
[1] "STARTing cell.. 219 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.253 -0.411 -0.338 -0.205 -0.121 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 219"
[1] "ENDing cell.. 219 With feature... yCoord"
[1] "STARTing cell.. 264 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.1168 -0.0512 -0.0504 -0.2844 0.1965 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 264"
[1] "ENDing cell.. 264 With feature... yCoord"
[1] "STARTing cell.. 136 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1626 -0.1012 -0.0288 0.0238 0.0886 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 136"
[1] "ENDing cell.. 136 With feature... yCoord"
[1] "STARTing cell.. 54 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.32 -0.272 -0.288 -0.304 -0.287 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 54"
[1] "ENDing cell.. 54 With feature... yCoord"
[1] "STARTing cell.. 69 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2542 -0.1841 -0.0246 -0.1309 -0.1309 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 69"
[1] "ENDing cell.. 69 With feature... yCoord"
[1] "STARTing cell.. 111 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.174 0.243 0.293 0.345 0.423 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 111"
[1] "ENDing cell.. 111 With feature... yCoord"
[1] "STARTing cell.. 189 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.133 -0.233 -0.273 -0.277 -0.235 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 189"
[1] "ENDing cell.. 189 With feature... yCoord"
[1] "STARTing cell.. 171 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.126 0.21 0.289 0.356 0.462 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 171"
[1] "ENDing cell.. 171 With feature... yCoord"
[1] "STARTing cell.. 231 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2261 -0.1327 -0.1087 -0.0199 0.0123 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 231"
[1] "ENDing cell.. 231 With feature... yCoord"
[1] "STARTing cell.. 205 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1071 -0.086 -0.0611 -0.0192 -0.0107 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 205"
[1] "ENDing cell.. 205 With feature... yCoord"
[1] "STARTing cell.. 244 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.147 0.185 0.242 0.312 0.365 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 244"
[1] "ENDing cell.. 244 With feature... yCoord"
[1] "STARTing cell.. 1 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0396 0.0155 -0.0229 -0.1067 0.0304 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 1"
[1] "ENDing cell.. 1 With feature... yCoord"
[1] "STARTing cell.. 36 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1128 -0.019 0.0615 0.1846 0.2864 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 36"
[1] "ENDing cell.. 36 With feature... yCoord"
[1] "STARTing cell.. 7 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0527 0.0687 0.1331 0.1216 0.1648 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 7"
[1] "ENDing cell.. 7 With feature... yCoord"
[1] "STARTing cell.. 102 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.163 0.231 0.293 0.358 0.432 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 102"
[1] "ENDing cell.. 102 With feature... yCoord"
[1] "STARTing cell.. 22 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0283 0.00871 0.0367 0.09292 0.1294 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 22"
[1] "ENDing cell.. 22 With feature... yCoord"
[1] "STARTing cell.. 188 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.02463 -0.00494 -0.07366 0.12826 -0.10413 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 188"
[1] "ENDing cell.. 188 With feature... yCoord"
[1] "STARTing cell.. 55 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0516 -0.0965 -0.0301 -0.0863 0.0713 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 55"
[1] "ENDing cell.. 55 With feature... yCoord"
[1] "STARTing cell.. 243 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.399824 -0.333989 -0.248518 -0.135291 -0.000769 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 243"
[1] "ENDing cell.. 243 With feature... yCoord"
[1] "STARTing cell.. 123 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.1319 0.0671 0.1499 0.1392 0.2028 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 123"
[1] "ENDing cell.. 123 With feature... yCoord"
[1] "STARTing cell.. 21 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.228 -0.234 -0.282 -0.352 -0.367 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 21"
[1] "ENDing cell.. 21 With feature... yCoord"
[1] "STARTing cell.. 163 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1764 -0.144 -0.0794 -0.0388 0.0774 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 163"
[1] "ENDing cell.. 163 With feature... yCoord"
[1] "STARTing cell.. 112 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0648 0.1398 0.106 0.125 0.1668 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 112"
[1] "ENDing cell.. 112 With feature... yCoord"
[1] "STARTing cell.. 33 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.02 0.0508 0.1434 0.2279 0.3087 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 33"
[1] "ENDing cell.. 33 With feature... yCoord"
[1] "STARTing cell.. 172 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0913 -0.1022 -0.1043 -0.1269 -0.0723 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 172"
[1] "ENDing cell.. 172 With feature... yCoord"
[1] "STARTing cell.. 95 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.177 0.234 0.312 0.38 0.47 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 95"
[1] "ENDing cell.. 95 With feature... yCoord"
[1] "STARTing cell.. 30 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0663 0.039 0.0912 0.0569 0.1136 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 30"
[1] "ENDing cell.. 30 With feature... yCoord"
[1] "STARTing cell.. 203 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1034 0.2348 -0.1217 -0.1691 0.0166 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 203"
[1] "ENDing cell.. 203 With feature... yCoord"
[1] "STARTing cell.. 274 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.1797 0.2408 0.059 0.0757 0.4414 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 274"
[1] "ENDing cell.. 274 With feature... yCoord"
[1] "STARTing cell.. 131 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0873 0.0687 0.0247 0.0543 -0.0214 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 131"
[1] "ENDing cell.. 131 With feature... yCoord"
[1] "STARTing cell.. 68 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0302 0.1691 0.0395 0.1087 0.14 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 68"
[1] "ENDing cell.. 68 With feature... yCoord"
[1] "STARTing cell.. 71 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1654 -0.1085 -0.0824 -0.0467 0.0123 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 71"
[1] "ENDing cell.. 71 With feature... yCoord"
[1] "STARTing cell.. 135 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.3032 -0.0938 -0.1849 -0.0526 -0.0557 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 135"
[1] "ENDing cell.. 135 With feature... yCoord"
[1] "STARTing cell.. 84 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.194 -0.185 -0.156 -0.129 -0.08 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 84"
[1] "ENDing cell.. 84 With feature... yCoord"
[1] "STARTing cell.. 206 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1036 -0.1521 -0.1838 0.0192 0.0366 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 206"
[1] "ENDing cell.. 206 With feature... yCoord"
[1] "STARTing cell.. 255 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.193 -0.225 -0.271 -0.257 -0.249 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 255"
[1] "ENDing cell.. 255 With feature... yCoord"
[1] "STARTing cell.. 64 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0583 0.0484 0.1006 -0.0415 0.2411 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 64"
[1] "ENDing cell.. 64 With feature... yCoord"
[1] "STARTing cell.. 9 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0731 0.101 0.1138 0.1278 0.1198 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 9"
[1] "ENDing cell.. 9 With feature... yCoord"
[1] "STARTing cell.. 122 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0828 0.1255 0.1708 0.2336 0.3048 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 122"
[1] "ENDing cell.. 122 With feature... yCoord"
[1] "STARTing cell.. 23 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.02 -0.0115 -0.0734 -0.0683 -0.0348 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 23"
[1] "ENDing cell.. 23 With feature... yCoord"
[1] "STARTing cell.. 162 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2765 -0.2269 -0.161 -0.0747 0.0156 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 162"
[1] "ENDing cell.. 162 With feature... yCoord"
[1] "STARTing cell.. 229 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.105 -0.174 -0.243 -0.23 -0.218 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 229"
[1] "ENDing cell.. 229 With feature... yCoord"
[1] "STARTing cell.. 57 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0982 0.1703 0.1999 0.275 0.3997 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 57"
[1] "ENDing cell.. 57 With feature... yCoord"
[1] "STARTing cell.. 249 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0676 0.0215 0.0364 0.1102 -0.0311 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 249"
[1] "ENDing cell.. 249 With feature... yCoord"
[1] "STARTing cell.. 125 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.041 0.201 0.169 0.329 0.311 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 125"
[1] "ENDing cell.. 125 With feature... yCoord"
[1] "STARTing cell.. 8 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1223 -0.1 -0.0362 0.0781 0.1403 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 8"
[1] "ENDing cell.. 8 With feature... yCoord"
[1] "STARTing cell.. 165 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.03611 0.00223 0.01135 0.00395 0.04838 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 165"
[1] "ENDing cell.. 165 With feature... yCoord"
[1] "STARTing cell.. 83 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.157 0.21 0.267 0.325 0.396 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 83"
[1] "ENDing cell.. 83 With feature... yCoord"
[1] "STARTing cell.. 113 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.13 0.139 0.181 0.269 0.334 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 113"
[1] "ENDing cell.. 113 With feature... yCoord"
[1] "STARTing cell.. 220 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.116 0.19 0.268 0.348 0.424 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 220"
[1] "ENDing cell.. 220 With feature... yCoord"
[1] "STARTing cell.. 174 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0921 0.1458 0.2035 0.2812 0.3573 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 174"
[1] "ENDing cell.. 174 With feature... yCoord"
[1] "STARTing cell.. 56 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0558 -0.0251 0.0405 0.1179 0.1403 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 56"
[1] "ENDing cell.. 56 With feature... yCoord"
[1] "STARTing cell.. 173 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0264 0.0502 0.0995 0.1674 0.2277 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 173"
[1] "ENDing cell.. 173 With feature... yCoord"
[1] "STARTing cell.. 232 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0633 0.0298 0.1508 0.2327 0.3426 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 232"
[1] "ENDing cell.. 232 With feature... yCoord"
[1] "STARTing cell.. 37 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2409 0.0118 0.1442 0.0145 -0.2231 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 37"
[1] "ENDing cell.. 37 With feature... yCoord"
[1] "STARTing cell.. 86 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.179765 -0.27693 -0.159037 0.000393 0.006453 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 86"
[1] "ENDing cell.. 86 With feature... yCoord"
[1] "STARTing cell.. 103 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0901 0.1474 0.1398 0.2242 0.2461 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 103"
[1] "ENDing cell.. 103 With feature... yCoord"
[1] "STARTing cell.. 208 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1523 -0.1074 0.0571 0.1881 0.1856 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 208"
[1] "ENDing cell.. 208 With feature... yCoord"
[1] "STARTing cell.. 190 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.00708 -0.02488 0.01497 0.09009 0.16467 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 190"
[1] "ENDing cell.. 190 With feature... yCoord"
[1] "STARTing cell.. 4 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.12 0.183 0.253 0.324 0.394 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 4"
[1] "ENDing cell.. 4 With feature... yCoord"
[1] "STARTing cell.. 238 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.048 0.0669 -0.1418 0.1066 0.2229 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 238"
[1] "ENDing cell.. 238 With feature... yCoord"
[1] "STARTing cell.. 11 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.01597 0.00541 0.04482 -0.01218 0.05575 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 11"
[1] "ENDing cell.. 11 With feature... yCoord"
[1] "STARTing cell.. 29 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0442 0.0724 0.0812 0.1003 0.1312 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 29"
[1] "ENDing cell.. 29 With feature... yCoord"
[1] "STARTing cell.. 59 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2384 -0.1941 -0.0334 0.0718 0.1186 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 59"
[1] "ENDing cell.. 59 With feature... yCoord"
[1] "STARTing cell.. 96 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.168 -0.176 -0.274 -0.335 -0.257 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 96"
[1] "ENDing cell.. 96 With feature... yCoord"
[1] "STARTing cell.. 204 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 7.18e-02 -2.90e-02 -1.37e-01 4.17e-05 -4.20e-03 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 204"
[1] "ENDing cell.. 204 With feature... yCoord"
[1] "STARTing cell.. 275 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0382 0.1234 0.2147 0.2968 0.351 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 275"
[1] "ENDing cell.. 275 With feature... yCoord"
[1] "STARTing cell.. 130 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0234 0.0141 0.0552 0.0906 0.0255 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 130"
[1] "ENDing cell.. 130 With feature... yCoord"
[1] "STARTing cell.. 137 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.256 -0.257 -0.283 -0.224 -0.38 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 137"
[1] "ENDing cell.. 137 With feature... yCoord"
[1] "STARTing cell.. 140 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.132 0.189 0.211 0.265 0.311 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 140"
[1] "ENDing cell.. 140 With feature... yCoord"
[1] "STARTing cell.. 226 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0488 0.0883 0.0938 0.2385 0.2716 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 226"
[1] "ENDing cell.. 226 With feature... yCoord"
[1] "STARTing cell.. 74 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2683 -0.1406 -0.1043 -0.0202 0.0291 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 74"
[1] "ENDing cell.. 74 With feature... yCoord"
[1] "STARTing cell.. 256 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.143 0.151 0.184 0.225 0.233 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 256"
[1] "ENDing cell.. 256 With feature... yCoord"
[1] "STARTing cell.. 65 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.1556 0.094 0.1714 0.0773 0.0777 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 65"
[1] "ENDing cell.. 65 With feature... yCoord"
[1] "STARTing cell.. 87 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0803 0.0681 -0.064 -0.0262 0.1864 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 87"
[1] "ENDing cell.. 87 With feature... yCoord"
[1] "STARTing cell.. 124 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1065 -0.068 -0.0173 0.0193 0.1177 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 124"
[1] "ENDing cell.. 124 With feature... yCoord"
[1] "STARTing cell.. 210 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1182 -0.0355 0.1377 0.2034 0.1849 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 210"
[1] "ENDing cell.. 210 With feature... yCoord"
[1] "STARTing cell.. 164 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1262 -0.0718 -0.0997 0.1774 -0.1225 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 164"
[1] "ENDing cell.. 164 With feature... yCoord"
[1] "STARTing cell.. 230 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.127 -0.0555 0.0808 0.1537 0.1637 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 230"
[1] "ENDing cell.. 230 With feature... yCoord"
[1] "STARTing cell.. 13 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0579 0.0427 0.1055 0.0891 0.0597 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 13"
[1] "ENDing cell.. 13 With feature... yCoord"
[1] "STARTing cell.. 250 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0646 0.0289 0.1115 0.0526 0.2301 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 250"
[1] "ENDing cell.. 250 With feature... yCoord"
[1] "STARTing cell.. 10 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.182 0.232 0.273 0.327 0.369 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 10"
[1] "ENDing cell.. 10 With feature... yCoord"
[1] "STARTing cell.. 85 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0265 0.216 0.16 0.281 0.2573 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 85"
[1] "ENDing cell.. 85 With feature... yCoord"
[1] "STARTing cell.. 61 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -8.21e-05 -1.02e-01 -4.80e-02 -3.43e-02 8.43e-02 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 61"
[1] "ENDing cell.. 61 With feature... yCoord"
[1] "STARTing cell.. 221 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0478 -0.0832 -0.1261 -0.065 0.0109 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 221"
[1] "ENDing cell.. 221 With feature... yCoord"
[1] "STARTing cell.. 265 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0134 -0.0513 -0.1452 -0.2289 0.0124 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 265"
[1] "ENDing cell.. 265 With feature... yCoord"
[1] "STARTing cell.. 58 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.108 0.187 0.226 0.276 0.408 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 58"
[1] "ENDing cell.. 58 With feature... yCoord"
[1] "STARTing cell.. 114 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0507 0.1962 0.1758 0.2522 0.2693 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 114"
[1] "ENDing cell.. 114 With feature... yCoord"
[1] "STARTing cell.. 233 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0153 0.0176 0.0769 0.1027 0.1888 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 233"
[1] "ENDing cell.. 233 With feature... yCoord"
[1] "STARTing cell.. 246 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.02304 0.00389 0.07604 0.13801 0.16581 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 246"
[1] "ENDing cell.. 246 With feature... yCoord"
[1] "STARTing cell.. 104 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.16122 -0.10253 -0.00318 0.02645 0.07268 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 104"
[1] "ENDing cell.. 104 With feature... yCoord"
[1] "STARTing cell.. 76 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0556 0.1477 0.1019 0.1221 0.1374 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 76"
[1] "ENDing cell.. 76 With feature... yCoord"
[1] "STARTing cell.. 239 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.1258 0.0916 0.1594 0.157 0.3731 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 239"
[1] "ENDing cell.. 239 With feature... yCoord"
[1] "STARTing cell.. 88 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1236 -0.0293 0.0525 -0.0232 -0.0691 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 88"
[1] "ENDing cell.. 88 With feature... yCoord"
[1] "STARTing cell.. 211 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1382 -0.078 -0.1413 -0.0988 -0.058 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 211"
[1] "ENDing cell.. 211 With feature... yCoord"
[1] "STARTing cell.. 24 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2196 -0.1314 -0.122 0.0461 0.1112 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 24"
[1] "ENDing cell.. 24 With feature... yCoord"
[1] "STARTing cell.. 276 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0187 -0.0609 -0.0253 0.064 0.1479 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 276"
[1] "ENDing cell.. 276 With feature... yCoord"
[1] "STARTing cell.. 115 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0905 -0.0438 0.00176 0.13185 -0.08046 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 115"
[1] "ENDing cell.. 115 With feature... yCoord"
[1] "STARTing cell.. 132 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0436 0.1244 0.1391 0.2002 0.2716 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 132"
[1] "ENDing cell.. 132 With feature... yCoord"
[1] "STARTing cell.. 138 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.00339 0.05425 0.1355 0.17833 0.21272 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 138"
[1] "ENDing cell.. 138 With feature... yCoord"
[1] "STARTing cell.. 227 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.153 0.147 0.204 0.277 0.372 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 227"
[1] "ENDing cell.. 227 With feature... yCoord"
[1] "STARTing cell.. 257 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0167 0.041 0.1314 0.2158 0.2859 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 257"
[1] "ENDing cell.. 257 With feature... yCoord"
[1] "STARTing cell.. 133 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.1469 0.0948 0.0738 0.2776 0.3652 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 133"
[1] "ENDing cell.. 133 With feature... yCoord"
[1] "STARTing cell.. 126 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.526 -0.418 -0.327 -0.412 -0.173 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 126"
[1] "ENDing cell.. 126 With feature... yCoord"
[1] "STARTing cell.. 78 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.155 0.15 0.208 0.261 0.326 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 78"
[1] "ENDing cell.. 78 With feature... yCoord"
[1] "STARTing cell.. 166 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0572 -0.0486 -0.0521 -0.0418 0.0838 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 166"
[1] "ENDing cell.. 166 With feature... yCoord"
[1] "STARTing cell.. 195 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.156 0.19 0.245 0.273 0.368 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 195"
[1] "ENDing cell.. 195 With feature... yCoord"
[1] "STARTing cell.. 251 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0122 0.0578 0.1227 0.193 0.3086 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 251"
[1] "ENDing cell.. 251 With feature... yCoord"
[1] "STARTing cell.. 12 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.116 0.202 0.273 0.341 0.385 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 12"
[1] "ENDing cell.. 12 With feature... yCoord"
[1] "STARTing cell.. 222 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.06535 -0.00481 0.07453 0.15873 0.26528 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 222"
[1] "ENDing cell.. 222 With feature... yCoord"
[1] "STARTing cell.. 60 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0768 0.096 0.1158 0.1523 0.3024 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 60"
[1] "ENDing cell.. 60 With feature... yCoord"
[1] "STARTing cell.. 63 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.149 -0.136 -0.254 -0.218 -0.234 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 63"
[1] "ENDing cell.. 63 With feature... yCoord"
[1] "STARTing cell.. 175 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0278 0.0196 0.0379 0.1237 0.1418 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 175"
[1] "ENDing cell.. 175 With feature... yCoord"
[1] "STARTing cell.. 234 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0636 0.1065 0.1909 0.264 0.4055 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 234"
[1] "ENDing cell.. 234 With feature... yCoord"
[1] "STARTing cell.. 192 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0421 0.1283 0.2341 0.2305 0.3006 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 192"
[1] "ENDing cell.. 192 With feature... yCoord"
[1] "STARTing cell.. 240 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0787 0.2297 0.0193 0.038 0.2076 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 240"
[1] "ENDing cell.. 240 With feature... yCoord"
[1] "STARTing cell.. 80 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0283 0.0848 0.1266 0.1334 0.1709 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 80"
[1] "ENDing cell.. 80 With feature... yCoord"
[1] "STARTing cell.. 97 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.332 -0.337 -0.281 -0.2 -0.166 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 97"
[1] "ENDing cell.. 97 With feature... yCoord"
[1] "STARTing cell.. 207 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.319 -0.276 -0.302 -0.212 -0.242 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 207"
[1] "ENDing cell.. 207 With feature... yCoord"
[1] "STARTing cell.. 277 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.323 -0.28 -0.163 -0.191 -0.189 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 277"
[1] "ENDing cell.. 277 With feature... yCoord"
[1] "STARTing cell.. 73 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0939 0.1779 0.2295 0.2983 0.3903 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 73"
[1] "ENDing cell.. 73 With feature... yCoord"
[1] "STARTing cell.. 139 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.00946 0.06043 -0.00292 0.00949 0.1198 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 139"
[1] "ENDing cell.. 139 With feature... yCoord"
[1] "STARTing cell.. 258 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.081 0.144 0.279 0.343 0.368 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 258"
[1] "ENDing cell.. 258 With feature... yCoord"
[1] "STARTing cell.. 179 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0414 0.0145 0.0583 -0.0544 0.0045 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 179"
[1] "ENDing cell.. 179 With feature... yCoord"
[1] "STARTing cell.. 167 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.383435 -0.323649 -0.2422 -0.137514 -0.000241 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 167"
[1] "ENDing cell.. 167 With feature... yCoord"
[1] "STARTing cell.. 252 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0925 0.1692 0.2349 0.3265 0.4088 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 252"
[1] "ENDing cell.. 252 With feature... yCoord"
[1] "STARTing cell.. 81 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0496 -0.0415 0.1124 -0.1108 -0.1023 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 81"
[1] "ENDing cell.. 81 With feature... yCoord"
[1] "STARTing cell.. 14 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.167 0.219 0.273 0.337 0.42 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 14"
[1] "ENDing cell.. 14 With feature... yCoord"
[1] "STARTing cell.. 199 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1954 -0.1463 -0.0889 -0.0472 0.0233 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 199"
[1] "ENDing cell.. 199 With feature... yCoord"
[1] "STARTing cell.. 266 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0601 -0.018 0.1038 0.1831 0.2671 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 266"
[1] "ENDing cell.. 266 With feature... yCoord"
[1] "STARTing cell.. 116 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0145 -0.1132 -0.121 -0.2441 -0.371 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 116"
[1] "ENDing cell.. 116 With feature... yCoord"
[1] "STARTing cell.. 176 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.16 0.23 0.299 0.373 0.463 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 176"
[1] "ENDing cell.. 176 With feature... yCoord"
[1] "STARTing cell.. 235 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.11358 0.06729 0.00122 -0.13174 0.0368 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 235"
[1] "ENDing cell.. 235 With feature... yCoord"
[1] "STARTing cell.. 38 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.112 0.15 0.186 0.256 0.305 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 38"
[1] "ENDing cell.. 38 With feature... yCoord"
[1] "STARTing cell.. 105 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.273 -0.26 -0.174 -0.119 -0.127 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 105"
[1] "ENDing cell.. 105 With feature... yCoord"
[1] "STARTing cell.. 193 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2592 -0.1842 -0.1558 -0.04 0.0367 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 193"
[1] "ENDing cell.. 193 With feature... yCoord"
[1] "STARTing cell.. 181 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.1263 0.0668 -0.0875 -0.2295 -0.2197 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 181"
[1] "ENDing cell.. 181 With feature... yCoord"
[1] "STARTing cell.. 28 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.00467 0.02388 -0.00347 0.04188 0.03664 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 28"
[1] "ENDing cell.. 28 With feature... yCoord"
[1] "STARTing cell.. 98 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0783 -0.0833 0.0212 -0.0637 -0.1655 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 98"
[1] "ENDing cell.. 98 With feature... yCoord"
[1] "STARTing cell.. 200 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0601 0.1175 0.152 0.1951 0.2847 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 200"
[1] "ENDing cell.. 200 With feature... yCoord"
[1] "STARTing cell.. 209 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.127 -0.226 -0.271 -0.245 -0.192 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 209"
[1] "ENDing cell.. 209 With feature... yCoord"
[1] "STARTing cell.. 278 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.116 0.172 0.261 0.305 0.414 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 278"
[1] "ENDing cell.. 278 With feature... yCoord"
[1] "STARTing cell.. 75 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0994 -0.0292 -0.2223 -0.0902 -0.1753 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 75"
[1] "ENDing cell.. 75 With feature... yCoord"
[1] "STARTing cell.. 141 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.109 0.179 0.251 0.333 0.409 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 141"
[1] "ENDing cell.. 141 With feature... yCoord"
[1] "STARTing cell.. 259 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0963 -0.0348 -0.2208 -0.1858 -0.1071 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 259"
[1] "ENDing cell.. 259 With feature... yCoord"
[1] "STARTing cell.. 16 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0937 0.1719 0.2358 0.3021 0.3766 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 16"
[1] "ENDing cell.. 16 With feature... yCoord"
[1] "STARTing cell.. 267 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.09331 -0.16067 -0.00731 0.08759 -0.02594 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 267"
[1] "ENDing cell.. 267 With feature... yCoord"
[1] "STARTing cell.. 201 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.046 0.179 0.242 0.293 0.255 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 201"
[1] "ENDing cell.. 201 With feature... yCoord"
[1] "STARTing cell.. 117 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.109 0.0985 0.1478 0.1974 0.2868 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 117"
[1] "ENDing cell.. 117 With feature... yCoord"
[1] "STARTing cell.. 177 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1823 -0.1014 -0.0885 0.1168 0.151 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 177"
[1] "ENDing cell.. 177 With feature... yCoord"
[1] "STARTing cell.. 15 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0765 0.1102 0.1807 0.2336 0.3017 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 15"
[1] "ENDing cell.. 15 With feature... yCoord"
[1] "STARTing cell.. 106 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.125 0.145 0.181 0.209 0.234 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 106"
[1] "ENDing cell.. 106 With feature... yCoord"
[1] "STARTing cell.. 194 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.105 0.164 0.206 0.281 0.304 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 194"
[1] "ENDing cell.. 194 With feature... yCoord"
[1] "STARTing cell.. 31 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.1144 0.0384 0.0851 0.0501 0.058 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 31"
[1] "ENDing cell.. 31 With feature... yCoord"
[1] "STARTing cell.. 77 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1882 -0.1079 -0.0517 0.0234 0.1323 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 77"
[1] "ENDing cell.. 77 With feature... yCoord"
[1] "STARTing cell.. 91 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0543 -0.1036 -0.0883 -0.0912 -0.2395 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 91"
[1] "ENDing cell.. 91 With feature... yCoord"
[1] "STARTing cell.. 142 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2846 -0.2582 -0.1375 -0.0231 0.1056 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 142"
[1] "ENDing cell.. 142 With feature... yCoord"
[1] "STARTing cell.. 17 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.18081 -0.23613 -0.11251 0.02976 0.00715 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 17"
[1] "ENDing cell.. 17 With feature... yCoord"
[1] "STARTing cell.. 62 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.00444 0.02809 0.15287 0.22778 0.03428 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 62"
[1] "ENDing cell.. 62 With feature... yCoord"
[1] "STARTing cell.. 168 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1784 -0.1514 -0.0806 0.0997 0.1386 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 168"
[1] "ENDing cell.. 168 With feature... yCoord"
[1] "STARTing cell.. 127 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0919 -0.077 -0.0231 0.165 0.1384 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 127"
[1] "ENDing cell.. 127 With feature... yCoord"
[1] "STARTing cell.. 253 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.031 0.0217 0.1189 0.1474 0.125 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 253"
[1] "ENDing cell.. 253 With feature... yCoord"
[1] "STARTing cell.. 118 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0381 0.0658 0.1303 0.1723 0.1031 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 118"
[1] "ENDing cell.. 118 With feature... yCoord"
[1] "STARTing cell.. 39 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0851 0.131 0.1609 0.1906 0.2147 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 39"
[1] "ENDing cell.. 39 With feature... yCoord"
[1] "STARTing cell.. 107 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.188 0.235 0.299 0.362 0.421 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 107"
[1] "ENDing cell.. 107 With feature... yCoord"
[1] "STARTing cell.. 196 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0296 -0.0417 0.1386 -0.193 0.0777 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 196"
[1] "ENDing cell.. 196 With feature... yCoord"
[1] "STARTing cell.. 212 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.152 0.225 0.295 0.377 0.456 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 212"
[1] "ENDing cell.. 212 With feature... yCoord"
[1] "STARTing cell.. 79 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0531 0.0821 0.1151 0.1524 0.2071 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 79"
[1] "ENDing cell.. 79 With feature... yCoord"
[1] "STARTing cell.. 143 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0758 0.0299 -0.0676 0.0834 0.0806 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 143"
[1] "ENDing cell.. 143 With feature... yCoord"
[1] "STARTing cell.. 92 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.01 -0.0444 -0.0206 -0.0568 -0.087 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 92"
[1] "ENDing cell.. 92 With feature... yCoord"
[1] "STARTing cell.. 169 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.191 -0.216 -0.255 -0.221 -0.11 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 169"
[1] "ENDing cell.. 169 With feature... yCoord"
[1] "STARTing cell.. 254 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.102 -0.202 -0.265 -0.11 0.109 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 254"
[1] "ENDing cell.. 254 With feature... yCoord"
[1] "STARTing cell.. 269 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.3145 0.1657 -0.0904 -0.2447 0.4348 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 269"
[1] "ENDing cell.. 269 With feature... yCoord"
[1] "STARTing cell.. 119 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.226 -0.1524 -0.0569 0.0311 0.1607 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 119"
[1] "ENDing cell.. 119 With feature... yCoord"
[1] "STARTing cell.. 180 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2141 -0.0349 -0.0247 -0.106 0.0068 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 180"
[1] "ENDing cell.. 180 With feature... yCoord"
[1] "STARTing cell.. 151 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.02856 0.01361 0.00778 0.02391 0.02923 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 151"
[1] "ENDing cell.. 151 With feature... yCoord"
[1] "STARTing cell.. 40 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0763 0.0756 0.1433 0.1776 0.2554 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 40"
[1] "ENDing cell.. 40 With feature... yCoord"
[1] "STARTing cell.. 191 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.3962 -0.3508 -0.2609 -0.1671 -0.0871 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 191"
[1] "ENDing cell.. 191 With feature... yCoord"
[1] "STARTing cell.. 108 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.3684 -0.3197 -0.1957 -0.1173 -0.0484 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 108"
[1] "ENDing cell.. 108 With feature... yCoord"
[1] "STARTing cell.. 198 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.16362 0.00619 -0.28376 0.14819 0.07728 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 198"
[1] "ENDing cell.. 198 With feature... yCoord"
[1] "STARTing cell.. 144 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.1155 0.1389 0.0988 0.2265 0.1853 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 144"
[1] "ENDing cell.. 144 With feature... yCoord"
[1] "STARTing cell.. 170 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1516 -0.0915 0.0273 0.088 0.1087 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 170"
[1] "ENDing cell.. 170 With feature... yCoord"
[1] "STARTing cell.. 270 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0867 -0.2145 0.0585 -0.4146 -0.0499 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 270"
[1] "ENDing cell.. 270 With feature... yCoord"
[1] "STARTing cell.. 41 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.14251 0.00417 -0.00842 -0.02326 0.04149 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 41"
[1] "ENDing cell.. 41 With feature... yCoord"
[1] "STARTing cell.. 154 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.09058 0.00267 0.05121 0.04932 0.10386 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 154"
[1] "ENDing cell.. 154 With feature... yCoord"
[1] "STARTing cell.. 90 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1172 -0.0994 -0.0285 0.0437 0.0749 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 90"
[1] "ENDing cell.. 90 With feature... yCoord"
[1] "STARTing cell.. 145 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0384 0.1074 0.1699 0.2724 0.3527 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 145"
[1] "ENDing cell.. 145 With feature... yCoord"
[1] "STARTing cell.. 271 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0266 0.0437 0.051 0.0713 0.1027 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 271"
[1] "ENDing cell.. 271 With feature... yCoord"
[1] "STARTing cell.. 183 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1087 0.0431 -0.0431 -0.0839 0.011 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 183"
[1] "ENDing cell.. 183 With feature... yCoord"
[1] "STARTing cell.. 147 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.106 0.174 0.232 0.28 0.367 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 147"
[1] "ENDing cell.. 147 With feature... yCoord"
[1] "STARTing cell.. 178 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0415 0.0132 -0.0138 -0.0894 -0.1177 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 178"
[1] "ENDing cell.. 178 With feature... yCoord"
[1] "STARTing cell.. 272 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.134 0.213 0.278 0.338 0.387 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 272"
[1] "ENDing cell.. 272 With feature... yCoord"
[1] "STARTing cell.. 43 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0601 0.1114 0.1523 0.2024 0.2624 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 43"
[1] "ENDing cell.. 43 With feature... yCoord"
[1] "STARTing cell.. 99 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.118 0.19 0.261 0.351 0.42 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 99"
[1] "ENDing cell.. 99 With feature... yCoord"
[1] "STARTing cell.. 155 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2841 -0.1151 0.0466 0.1823 0.2362 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 155"
[1] "ENDing cell.. 155 With feature... yCoord"
[1] "STARTing cell.. 148 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0683 0.0832 0.1178 0.1286 0.204 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 148"
[1] "ENDing cell.. 148 With feature... yCoord"
[1] "STARTing cell.. 215 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0213 0.1341 0.2026 0.2803 0.3413 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 215"
[1] "ENDing cell.. 215 With feature... yCoord"
[1] "STARTing cell.. 149 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.153 0.228 0.316 0.387 0.47 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 149"
[1] "ENDing cell.. 149 With feature... yCoord"
[1] "STARTing cell.. 89 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.18802 -0.14008 -0.08677 -0.03227 0.00705 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 89"
[1] "ENDing cell.. 89 With feature... yCoord"
[1] "STARTing cell.. 156 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.00594 0.0093 0.08515 0.07018 0.15535 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 156"
[1] "ENDing cell.. 156 With feature... yCoord"
[1] "STARTing cell.. 150 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0182 0.1331 0.1777 0.2038 0.2157 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 150"
[1] "ENDing cell.. 150 With feature... yCoord"
[1] "STARTing cell.. 42 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.022 0.0638 0.1924 0.3003 0.3168 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 42"
[1] "ENDing cell.. 42 With feature... yCoord"
[1] "STARTing cell.. 44 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1199 -0.0577 0.0987 -0.0915 -0.0851 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 44"
[1] "ENDing cell.. 44 With feature... yCoord"
[1] "STARTing cell.. 100 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0812 -0.1633 -0.1211 -0.0567 -0.1958 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 100"
[1] "ENDing cell.. 100 With feature... yCoord"
[1] "STARTing cell.. 153 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0758 0.13 0.2381 0.2645 0.3824 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 153"
[1] "ENDing cell.. 153 With feature... yCoord"
[1] "STARTing cell.. 47 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0908 0.0507 0.1092 0.2321 0.3021 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 47"
[1] "ENDing cell.. 47 With feature... yCoord"
[1] "STARTing cell.. 202 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0855 -0.2491 -0.1151 -0.0106 0.0362 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 202"
[1] "ENDing cell.. 202 With feature... yCoord"
[1] "STARTing cell.. 51 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.3312 -0.2126 -0.1693 -0.1559 -0.0107 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 51"
[1] "ENDing cell.. 51 With feature... yCoord"
[1] "STARTing cell.. 260 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0154 0.1573 0.2131 0.1921 0.3215 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 260"
[1] "ENDing cell.. 260 With feature... yCoord"
[1] "STARTing cell.. 217 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2265 -0.0661 -0.1653 0.0317 -0.0737 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 217"
[1] "ENDing cell.. 217 With feature... yCoord"
[1] "STARTing cell.. 182 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0637 0.106 0.1587 0.2651 0.2555 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 182"
[1] "ENDing cell.. 182 With feature... yCoord"
[1] "STARTing cell.. 184 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.16244 -0.06648 -0.03758 -0.00877 0.05345 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 184"
[1] "ENDing cell.. 184 With feature... yCoord"
[1] "STARTing cell.. 45 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.027 0.0687 0.1421 0.221 0.2914 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 45"
[1] "ENDing cell.. 45 With feature... yCoord"
[1] "STARTing cell.. 241 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.324 -0.255 -0.274 -0.164 -0.12 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 241"
[1] "ENDing cell.. 241 With feature... yCoord"
[1] "STARTing cell.. 82 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.025 -0.0163 0.1211 0.126 -0.0289 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 82"
[1] "ENDing cell.. 82 With feature... yCoord"
[1] "STARTing cell.. 261 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2948 -0.149 0.0302 -0.0774 0.0426 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 261"
[1] "ENDing cell.. 261 With feature... yCoord"
[1] "STARTing cell.. 262 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.3073 -0.1774 -0.0795 0.066 0.1605 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 262"
[1] "ENDing cell.. 262 With feature... yCoord"
[1] "STARTing cell.. 216 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1674 -0.0526 0.0449 0.1286 0.1123 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 216"
[1] "ENDing cell.. 216 With feature... yCoord"
[1] "STARTing cell.. 66 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.029 0.0266 0.0424 0.0745 0.1454 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 66"
[1] "ENDing cell.. 66 With feature... yCoord"
[1] "STARTing cell.. 128 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0132 -0.1581 -0.0244 -0.1394 -0.0306 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 128"
[1] "ENDing cell.. 128 With feature... yCoord"
[1] "STARTing cell.. 50 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.07188 0.04494 0.18506 0.00451 0.01531 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 50"
[1] "ENDing cell.. 50 With feature... yCoord"
[1] "STARTing cell.. 5 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.331 -0.318 -0.269 -0.202 -0.119 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 5"
[1] "ENDing cell.. 5 With feature... yCoord"
[1] "STARTing cell.. 26 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0907 -0.2119 -0.0795 -0.0674 0.0805 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 26"
[1] "ENDing cell.. 26 With feature... yCoord"
[1] "STARTing cell.. 129 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.149 -0.151 -0.189 -0.231 -0.248 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 129"
[1] "ENDing cell.. 129 With feature... yCoord"
[1] "STARTing cell.. 67 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0439 -0.0363 -0.0314 0.0726 0.1322 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 67"
[1] "ENDing cell.. 67 With feature... yCoord"
[1] "STARTing cell.. 247 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1208 -0.00901 -0.08299 -0.03121 -0.0179 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 247"
[1] "ENDing cell.. 247 With feature... yCoord"
[1] "STARTing cell.. 134 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2126 -0.1198 -0.0216 0.0722 0.1633 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 134"
[1] "ENDing cell.. 134 With feature... yCoord"
[1] "STARTing cell.. 93 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0468 -0.0296 0.0339 0.0678 0.1406 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 93"
[1] "ENDing cell.. 93 With feature... yCoord"
[1] "STARTing cell.. 248 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.12453 -0.04841 0.00843 0.11239 0.16596 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 248"
[1] "ENDing cell.. 248 With feature... yCoord"
[1] "STARTing cell.. 157 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.1161 0.2506 0.1468 -0.0311 -0.0135 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 157"
[1] "ENDing cell.. 157 With feature... yCoord"
[1] "STARTing cell.. 46 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0625 0.1406 0.1855 0.1868 0.2218 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 46"
[1] "ENDing cell.. 46 With feature... yCoord"
[1] "STARTing cell.. 242 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.02235 0.00882 0.02575 0.09046 0.07624 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 242"
[1] "ENDing cell.. 242 With feature... yCoord"
[1] "STARTing cell.. 159 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1153 -0.05721 -0.04831 0.00415 0.13355 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 159"
[1] "ENDing cell.. 159 With feature... yCoord"
[1] "STARTing cell.. 186 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0656 0.0683 0.1292 -0.0225 0.1261 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 186"
[1] "ENDing cell.. 186 With feature... yCoord"
[1] "STARTing cell.. 228 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0695 -0.0823 -0.1044 -0.1319 -0.2046 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 228"
[1] "ENDing cell.. 228 With feature... yCoord"
[1] "STARTing cell.. 160 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.17562 -0.02073 0.00776 -0.01193 0.09933 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 160"
[1] "ENDing cell.. 160 With feature... yCoord"
[1] "STARTing cell.. 279 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0337 0.0206 0.0463 0.1067 0.1841 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 279"
[1] "ENDing cell.. 279 With feature... yCoord"
[1] "STARTing cell.. 53 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.3324 -0.2431 -0.2531 -0.2044 -0.0292 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 53"
[1] "ENDing cell.. 53 With feature... yCoord"
[1] "STARTing cell.. 94 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.3344 -0.2353 -0.1789 -0.0881 0.0197 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 94"
[1] "ENDing cell.. 94 With feature... yCoord"
[1] "STARTing cell.. 121 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.04 0.0244 0.1226 0.1306 0.1015 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 121"
[1] "ENDing cell.. 121 With feature... yCoord"
[1] "STARTing cell.. 213 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1453 -0.0513 0.0343 0.1077 0.2115 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 213"
[1] "ENDing cell.. 213 With feature... yCoord"
[1] "STARTing cell.. 109 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2009 -0.1503 -0.0833 -0.0546 0.0952 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 109"
[1] "ENDing cell.. 109 With feature... yCoord"
[1] "STARTing cell.. 110 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0549 -0.0481 -0.0511 -0.0854 -0.133 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 110"
[1] "ENDing cell.. 110 With feature... yCoord"
[1] "STARTing cell.. 101 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0955 -0.1188 -0.2461 0.1603 -0.0358 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 101"
[1] "ENDing cell.. 101 With feature... yCoord"
[1] "STARTing cell.. 187 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.3744 -0.2681 -0.1949 -0.126 -0.0875 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 187"
[1] "ENDing cell.. 187 With feature... yCoord"
[1] "STARTing cell.. 263 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.18296 -0.25127 -0.00136 -0.14534 0.11736 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 263"
[1] "ENDing cell.. 263 With feature... yCoord"
[1] "STARTing cell.. 218 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1803 -0.1004 -0.0594 -0.0743 -0.0693 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 218"
[1] "ENDing cell.. 218 With feature... yCoord"
[1] "STARTing cell.. 19 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0838 -0.0742 -0.0509 -0.032 -0.0342 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 19"
[1] "ENDing cell.. 19 With feature... yCoord"
[1] "STARTing cell.. 20 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.281 -0.26 -0.206 -0.1608 -0.0662 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 20"
[1] "ENDing cell.. 20 With feature... yCoord"
[1] "STARTing cell.. 224 With feature... yCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.29293 -0.1765 -0.06752 0.01878 0.00453 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 224"
[1] "ENDing cell.. 224 With feature... yCoord"
[1] "STARTing cell.. 219 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.00628 0.11972 -0.12033 0.21333 0.03045 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 219"
[1] "ENDing cell.. 219 With feature... zCoord"
[1] "STARTing cell.. 264 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.02937 0.00676 -0.03181 0.12088 -0.02853 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 264"
[1] "ENDing cell.. 264 With feature... zCoord"
[1] "STARTing cell.. 136 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.3505 -0.2521 -0.1236 -0.0143 0.1023 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 136"
[1] "ENDing cell.. 136 With feature... zCoord"
[1] "STARTing cell.. 54 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.104 0.18 0.251 0.323 0.401 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 54"
[1] "ENDing cell.. 54 With feature... zCoord"
[1] "STARTing cell.. 69 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.111 -0.1271 -0.0493 -0.0544 -0.0563 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 69"
[1] "ENDing cell.. 69 With feature... zCoord"
[1] "STARTing cell.. 111 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.179 0.244 0.316 0.383 0.459 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 111"
[1] "ENDing cell.. 111 With feature... zCoord"
[1] "STARTing cell.. 189 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.015 0.0258 0.1032 0.1384 0.1597 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 189"
[1] "ENDing cell.. 189 With feature... zCoord"
[1] "STARTing cell.. 171 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.139 0.207 0.268 0.34 0.4 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 171"
[1] "ENDing cell.. 171 With feature... zCoord"
[1] "STARTing cell.. 231 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0901 -0.156 -0.0534 -0.0922 -0.044 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 231"
[1] "ENDing cell.. 231 With feature... zCoord"
[1] "STARTing cell.. 205 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0328 -0.0692 -0.0364 0.0038 0.0802 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 205"
[1] "ENDing cell.. 205 With feature... zCoord"
[1] "STARTing cell.. 244 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0518 0.0921 0.1236 0.2277 0.2628 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 244"
[1] "ENDing cell.. 244 With feature... zCoord"
[1] "STARTing cell.. 1 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0623 0.1405 0.08 -0.1244 0.0815 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 1"
[1] "ENDing cell.. 1 With feature... zCoord"
[1] "STARTing cell.. 36 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.444 -0.464 -0.353 -0.318 -0.249 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 36"
[1] "ENDing cell.. 36 With feature... zCoord"
[1] "STARTing cell.. 7 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.05632 0.052 0.07367 -0.00824 0.13726 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 7"
[1] "ENDing cell.. 7 With feature... zCoord"
[1] "STARTing cell.. 102 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.147 0.223 0.306 0.39 0.459 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 102"
[1] "ENDing cell.. 102 With feature... zCoord"
[1] "STARTing cell.. 22 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2194 -0.0832 0.0153 0.0493 0.1568 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 22"
[1] "ENDing cell.. 22 With feature... zCoord"
[1] "STARTing cell.. 188 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.03216 -0.00323 -0.1122 0.08617 -0.13369 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 188"
[1] "ENDing cell.. 188 With feature... zCoord"
[1] "STARTing cell.. 55 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1253 -0.1088 -0.0692 -0.1287 0.0191 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 55"
[1] "ENDing cell.. 55 With feature... zCoord"
[1] "STARTing cell.. 243 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0934 0.1341 0.1738 0.2531 0.2856 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 243"
[1] "ENDing cell.. 243 With feature... zCoord"
[1] "STARTing cell.. 123 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.32214 -0.19838 -0.14171 -0.00981 -0.06704 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 123"
[1] "ENDing cell.. 123 With feature... zCoord"
[1] "STARTing cell.. 21 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0186 -0.0614 -0.2778 -0.2259 -0.1834 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 21"
[1] "ENDing cell.. 21 With feature... zCoord"
[1] "STARTing cell.. 163 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1379 -0.0908 -0.0297 -0.0447 0.0523 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 163"
[1] "ENDing cell.. 163 With feature... zCoord"
[1] "STARTing cell.. 112 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1165 -0.0215 0.0354 0.1043 0.1363 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 112"
[1] "ENDing cell.. 112 With feature... zCoord"
[1] "STARTing cell.. 33 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.193 0.244 0.309 0.38 0.427 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 33"
[1] "ENDing cell.. 33 With feature... zCoord"
[1] "STARTing cell.. 172 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.01403 -0.02008 0.04059 0.00837 0.1854 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 172"
[1] "ENDing cell.. 172 With feature... zCoord"
[1] "STARTing cell.. 95 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0941 0.1458 0.1964 0.3067 0.2992 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 95"
[1] "ENDing cell.. 95 With feature... zCoord"
[1] "STARTing cell.. 30 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.20515 -0.05656 0.00245 -0.11641 -0.04543 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 30"
[1] "ENDing cell.. 30 With feature... zCoord"
[1] "STARTing cell.. 203 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0604 0.1118 -0.0893 0.1872 -0.1481 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 203"
[1] "ENDing cell.. 203 With feature... zCoord"
[1] "STARTing cell.. 274 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.07296 -0.04065 -0.08206 0.1272 -0.00168 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 274"
[1] "ENDing cell.. 274 With feature... zCoord"
[1] "STARTing cell.. 131 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0186 -0.0758 0.0587 -0.0857 0.1361 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 131"
[1] "ENDing cell.. 131 With feature... zCoord"
[1] "STARTing cell.. 68 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.177 0.171 0.217 0.356 0.226 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 68"
[1] "ENDing cell.. 68 With feature... zCoord"
[1] "STARTing cell.. 71 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0491 0.1595 0.1503 0.1056 0.2593 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 71"
[1] "ENDing cell.. 71 With feature... zCoord"
[1] "STARTing cell.. 135 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.09879 0.14893 -0.00967 0.12596 0.01106 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 135"
[1] "ENDing cell.. 135 With feature... zCoord"
[1] "STARTing cell.. 84 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.256 -0.207 -0.183 -0.185 -0.179 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 84"
[1] "ENDing cell.. 84 With feature... zCoord"
[1] "STARTing cell.. 206 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0428 -0.0413 -0.0112 0.0427 0.0581 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 206"
[1] "ENDing cell.. 206 With feature... zCoord"
[1] "STARTing cell.. 255 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.07962 -0.03374 -0.01003 0.00792 -0.03948 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 255"
[1] "ENDing cell.. 255 With feature... zCoord"
[1] "STARTing cell.. 64 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.145 0.148 0.116 0.191 0.126 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 64"
[1] "ENDing cell.. 64 With feature... zCoord"
[1] "STARTing cell.. 9 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.00214 0.01895 0.09063 0.0588 0.11726 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 9"
[1] "ENDing cell.. 9 With feature... zCoord"
[1] "STARTing cell.. 122 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0722 -0.0363 0.0088 0.1132 0.1961 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 122"
[1] "ENDing cell.. 122 With feature... zCoord"
[1] "STARTing cell.. 23 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1355 -0.0496 0.0551 0.0952 0.185 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 23"
[1] "ENDing cell.. 23 With feature... zCoord"
[1] "STARTing cell.. 162 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1596 -0.0774 -0.0211 0.074 0.0761 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 162"
[1] "ENDing cell.. 162 With feature... zCoord"
[1] "STARTing cell.. 229 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0982 0.0595 -0.102 0.1167 -0.2484 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 229"
[1] "ENDing cell.. 229 With feature... zCoord"
[1] "STARTing cell.. 57 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.04342 -0.00363 -0.03272 -0.08661 0.05538 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 57"
[1] "ENDing cell.. 57 With feature... zCoord"
[1] "STARTing cell.. 249 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.049 0.0063 0.0853 0.1878 0.2431 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 249"
[1] "ENDing cell.. 249 With feature... zCoord"
[1] "STARTing cell.. 125 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0994 0.017 0.037 0.0959 0.157 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 125"
[1] "ENDing cell.. 125 With feature... zCoord"
[1] "STARTing cell.. 8 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.1068 0.0162 0.0457 0.3348 0.0755 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 8"
[1] "ENDing cell.. 8 With feature... zCoord"
[1] "STARTing cell.. 165 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.05285 -0.00659 0.03835 0.05829 0.15428 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 165"
[1] "ENDing cell.. 165 With feature... zCoord"
[1] "STARTing cell.. 83 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.128 0.19 0.255 0.336 0.365 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 83"
[1] "ENDing cell.. 83 With feature... zCoord"
[1] "STARTing cell.. 113 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1044 0.0522 -0.0882 -0.1517 0.0584 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 113"
[1] "ENDing cell.. 113 With feature... zCoord"
[1] "STARTing cell.. 220 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0932 0.1408 0.0181 0.1575 -0.011 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 220"
[1] "ENDing cell.. 220 With feature... zCoord"
[1] "STARTing cell.. 174 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.149 0.178 0.201 0.244 0.313 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 174"
[1] "ENDing cell.. 174 With feature... zCoord"
[1] "STARTing cell.. 56 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0494 0.0173 0.0795 0.1499 0.0692 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 56"
[1] "ENDing cell.. 56 With feature... zCoord"
[1] "STARTing cell.. 173 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.296 -0.199 -0.16 -0.041 0.072 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 173"
[1] "ENDing cell.. 173 With feature... zCoord"
[1] "STARTing cell.. 232 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.256 -0.23 -0.332 -0.263 -0.188 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 232"
[1] "ENDing cell.. 232 With feature... zCoord"
[1] "STARTing cell.. 37 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0435 0.1175 -0.1346 -0.0304 -0.1481 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 37"
[1] "ENDing cell.. 37 With feature... zCoord"
[1] "STARTing cell.. 86 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.151 -0.1511 -0.0266 -0.0345 -0.0644 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 86"
[1] "ENDing cell.. 86 With feature... zCoord"
[1] "STARTing cell.. 103 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0583 0.0497 0.0785 0.2661 0.2012 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 103"
[1] "ENDing cell.. 103 With feature... zCoord"
[1] "STARTing cell.. 208 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0827 0.0437 0.0506 0.0504 0.0731 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 208"
[1] "ENDing cell.. 208 With feature... zCoord"
[1] "STARTing cell.. 190 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0416 0.037 0.1093 0.1935 0.2803 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 190"
[1] "ENDing cell.. 190 With feature... zCoord"
[1] "STARTing cell.. 4 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.20737 -0.04784 -0.06918 -0.20452 0.00216 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 4"
[1] "ENDing cell.. 4 With feature... zCoord"
[1] "STARTing cell.. 238 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.026 0.0536 -0.1536 0.2562 -0.1457 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 238"
[1] "ENDing cell.. 238 With feature... zCoord"
[1] "STARTing cell.. 11 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0838 0.0644 0.1024 -0.0698 0.0551 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 11"
[1] "ENDing cell.. 11 With feature... zCoord"
[1] "STARTing cell.. 29 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.05 -0.0274 0.108 0.2038 0.1192 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 29"
[1] "ENDing cell.. 29 With feature... zCoord"
[1] "STARTing cell.. 59 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.3503 -0.2541 -0.2992 -0.2862 -0.0989 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 59"
[1] "ENDing cell.. 59 With feature... zCoord"
[1] "STARTing cell.. 96 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0646 0.1278 0.0992 0.0969 0.1953 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 96"
[1] "ENDing cell.. 96 With feature... zCoord"
[1] "STARTing cell.. 204 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0427 -0.0532 -0.0681 0.0931 0.04 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 204"
[1] "ENDing cell.. 204 With feature... zCoord"
[1] "STARTing cell.. 275 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.186 0.191 0.198 0.239 0.241 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 275"
[1] "ENDing cell.. 275 With feature... zCoord"
[1] "STARTing cell.. 130 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.183 0.215 0.287 0.31 0.338 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 130"
[1] "ENDing cell.. 130 With feature... zCoord"
[1] "STARTing cell.. 137 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0375 -0.0149 -0.0773 0.0234 0.0387 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 137"
[1] "ENDing cell.. 137 With feature... zCoord"
[1] "STARTing cell.. 140 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0709 -0.0227 -0.0282 -0.083 0.0067 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 140"
[1] "ENDing cell.. 140 With feature... zCoord"
[1] "STARTing cell.. 226 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0365 0.0507 0.1092 0.2368 0.3432 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 226"
[1] "ENDing cell.. 226 With feature... zCoord"
[1] "STARTing cell.. 74 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1366 -0.0363 -0.011 -0.063 0.0479 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 74"
[1] "ENDing cell.. 74 With feature... zCoord"
[1] "STARTing cell.. 256 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0524 -0.1129 -0.1216 0.1285 0.0372 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 256"
[1] "ENDing cell.. 256 With feature... zCoord"
[1] "STARTing cell.. 65 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.16324 0.00701 -0.08233 0.04091 -0.17592 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 65"
[1] "ENDing cell.. 65 With feature... zCoord"
[1] "STARTing cell.. 87 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0675 0.1446 0.2226 0.211 0.2704 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 87"
[1] "ENDing cell.. 87 With feature... zCoord"
[1] "STARTing cell.. 124 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1491 -0.0754 0.0192 0.0932 0.1134 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 124"
[1] "ENDing cell.. 124 With feature... zCoord"
[1] "STARTing cell.. 210 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0945 0.0473 0.0304 0.0503 0.0727 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 210"
[1] "ENDing cell.. 210 With feature... zCoord"
[1] "STARTing cell.. 164 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0358 0.0207 -0.1701 0.1702 -0.0162 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 164"
[1] "ENDing cell.. 164 With feature... zCoord"
[1] "STARTing cell.. 230 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1073 -0.0388 0.0734 0.1427 0.2039 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 230"
[1] "ENDing cell.. 230 With feature... zCoord"
[1] "STARTing cell.. 13 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0307 0.0326 0.1028 -0.0334 0.079 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 13"
[1] "ENDing cell.. 13 With feature... zCoord"
[1] "STARTing cell.. 250 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.03993 0.04831 -0.00076 0.20206 0.06055 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 250"
[1] "ENDing cell.. 250 With feature... zCoord"
[1] "STARTing cell.. 10 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0157 -0.0414 -0.1246 0.022 -0.028 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 10"
[1] "ENDing cell.. 10 With feature... zCoord"
[1] "STARTing cell.. 85 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0874 -0.0121 -0.0411 0.2252 -0.1723 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 85"
[1] "ENDing cell.. 85 With feature... zCoord"
[1] "STARTing cell.. 61 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0892 -0.0124 0.0227 -0.1795 0.0447 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 61"
[1] "ENDing cell.. 61 With feature... zCoord"
[1] "STARTing cell.. 221 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.011 0.0363 -0.0967 -0.0684 -0.1884 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 221"
[1] "ENDing cell.. 221 With feature... zCoord"
[1] "STARTing cell.. 265 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.02963 0.045 -0.08772 0.11561 0.00499 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 265"
[1] "ENDing cell.. 265 With feature... zCoord"
[1] "STARTing cell.. 58 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0529 0.1566 0.2027 0.2676 0.3899 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 58"
[1] "ENDing cell.. 58 With feature... zCoord"
[1] "STARTing cell.. 114 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.155 0.157 0.071 0.248 0.176 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 114"
[1] "ENDing cell.. 114 With feature... zCoord"
[1] "STARTing cell.. 233 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0576 0.1044 0.0779 0.1267 0.131 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 233"
[1] "ENDing cell.. 233 With feature... zCoord"
[1] "STARTing cell.. 246 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.02144 0.06669 -0.0065 0.18416 -0.00787 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 246"
[1] "ENDing cell.. 246 With feature... zCoord"
[1] "STARTing cell.. 104 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.141 0.217 0.289 0.363 0.424 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 104"
[1] "ENDing cell.. 104 With feature... zCoord"
[1] "STARTing cell.. 76 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0268 0.0719 0.1252 0.1048 0.1819 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 76"
[1] "ENDing cell.. 76 With feature... zCoord"
[1] "STARTing cell.. 239 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0337 0.0344 -0.0607 0.1994 0.0324 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 239"
[1] "ENDing cell.. 239 With feature... zCoord"
[1] "STARTing cell.. 88 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0309 -0.0353 -0.0635 -0.1736 -0.0859 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 88"
[1] "ENDing cell.. 88 With feature... zCoord"
[1] "STARTing cell.. 211 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.1091 0.1017 0.066 0.0821 0.2674 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 211"
[1] "ENDing cell.. 211 With feature... zCoord"
[1] "STARTing cell.. 24 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.1034 0.0248 0.1091 0.2628 0.1061 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 24"
[1] "ENDing cell.. 24 With feature... zCoord"
[1] "STARTing cell.. 276 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.00253 0.03348 0.01482 0.1915 0.1308 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 276"
[1] "ENDing cell.. 276 With feature... zCoord"
[1] "STARTing cell.. 115 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2623 -0.2065 -0.0851 -0.0396 0.1073 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 115"
[1] "ENDing cell.. 115 With feature... zCoord"
[1] "STARTing cell.. 132 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1683 -0.1147 -0.1178 -0.0343 -0.0321 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 132"
[1] "ENDing cell.. 132 With feature... zCoord"
[1] "STARTing cell.. 138 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.16 0.202 0.245 0.328 0.379 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 138"
[1] "ENDing cell.. 138 With feature... zCoord"
[1] "STARTing cell.. 227 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.00661 0.04044 -0.16704 0.13393 -0.10844 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 227"
[1] "ENDing cell.. 227 With feature... zCoord"
[1] "STARTing cell.. 257 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.12515 -0.07647 -0.10119 0.00853 -0.05863 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 257"
[1] "ENDing cell.. 257 With feature... zCoord"
[1] "STARTing cell.. 133 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.15255 -0.0417 0.00521 -0.13079 0.31332 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 133"
[1] "ENDing cell.. 133 With feature... zCoord"
[1] "STARTing cell.. 126 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0182 0.0551 0.1341 0.2903 0.3078 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 126"
[1] "ENDing cell.. 126 With feature... zCoord"
[1] "STARTing cell.. 78 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1091 -0.1783 -0.1384 -0.0266 0.0902 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 78"
[1] "ENDing cell.. 78 With feature... zCoord"
[1] "STARTing cell.. 166 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0671 -0.0305 -0.0431 -0.0442 0.0528 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 166"
[1] "ENDing cell.. 166 With feature... zCoord"
[1] "STARTing cell.. 195 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.000693 0.08571 0.175913 0.225868 0.286779 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 195"
[1] "ENDing cell.. 195 With feature... zCoord"
[1] "STARTing cell.. 251 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0171 0.0794 0.1484 0.2282 0.3326 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 251"
[1] "ENDing cell.. 251 With feature... zCoord"
[1] "STARTing cell.. 12 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0616 0.0567 0.0452 0.0836 0.1451 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 12"
[1] "ENDing cell.. 12 With feature... zCoord"
[1] "STARTing cell.. 222 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0852 0.1674 0.2107 0.3115 0.3753 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 222"
[1] "ENDing cell.. 222 With feature... zCoord"
[1] "STARTing cell.. 60 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0824 0.0112 0.1109 0.2445 0.1208 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 60"
[1] "ENDing cell.. 60 With feature... zCoord"
[1] "STARTing cell.. 63 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.1797 0.0172 -0.0742 -0.224 -0.3608 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 63"
[1] "ENDing cell.. 63 With feature... zCoord"
[1] "STARTing cell.. 175 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.014 0.0874 0.137 0.1861 0.2543 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 175"
[1] "ENDing cell.. 175 With feature... zCoord"
[1] "STARTing cell.. 234 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0808 0.1456 0.1198 0.2712 0.2405 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 234"
[1] "ENDing cell.. 234 With feature... zCoord"
[1] "STARTing cell.. 192 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.038 0.1415 0.0691 0.2235 0.1572 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 192"
[1] "ENDing cell.. 192 With feature... zCoord"
[1] "STARTing cell.. 240 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0378 0.0333 -0.1385 0.1729 -0.1215 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 240"
[1] "ENDing cell.. 240 With feature... zCoord"
[1] "STARTing cell.. 80 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0672 0.1178 0.206 0.2327 0.2657 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 80"
[1] "ENDing cell.. 80 With feature... zCoord"
[1] "STARTing cell.. 97 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.3184 -0.3565 -0.3038 -0.0565 -0.2313 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 97"
[1] "ENDing cell.. 97 With feature... zCoord"
[1] "STARTing cell.. 207 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0704 0.066 0.0455 0.2342 0.1089 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 207"
[1] "ENDing cell.. 207 With feature... zCoord"
[1] "STARTing cell.. 277 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0327 0.0174 -0.0374 0.1384 0.0811 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 277"
[1] "ENDing cell.. 277 With feature... zCoord"
[1] "STARTing cell.. 73 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.117 0.158 0.212 0.307 0.37 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 73"
[1] "ENDing cell.. 73 With feature... zCoord"
[1] "STARTing cell.. 139 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.209 -0.247 -0.3 -0.223 -0.22 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 139"
[1] "ENDing cell.. 139 With feature... zCoord"
[1] "STARTing cell.. 258 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0687 0.141 0.1754 0.3436 0.2974 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 258"
[1] "ENDing cell.. 258 With feature... zCoord"
[1] "STARTing cell.. 179 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.00949 -0.01388 0.03824 0.06086 0.09197 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 179"
[1] "ENDing cell.. 179 With feature... zCoord"
[1] "STARTing cell.. 167 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.186 0.193 0.187 0.277 0.308 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 167"
[1] "ENDing cell.. 167 With feature... zCoord"
[1] "STARTing cell.. 252 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.011 0.0854 0.2055 0.2544 0.3879 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 252"
[1] "ENDing cell.. 252 With feature... zCoord"
[1] "STARTing cell.. 81 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0256 0.0653 0.0803 -0.1788 -0.1191 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 81"
[1] "ENDing cell.. 81 With feature... zCoord"
[1] "STARTing cell.. 14 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0806 -0.09 -0.1906 0.0488 0.0125 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 14"
[1] "ENDing cell.. 14 With feature... zCoord"
[1] "STARTing cell.. 199 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0502 0.0602 -0.0276 -0.0712 0.1373 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 199"
[1] "ENDing cell.. 199 With feature... zCoord"
[1] "STARTing cell.. 266 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.099 0.161 0.139 0.319 0.193 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 266"
[1] "ENDing cell.. 266 With feature... zCoord"
[1] "STARTing cell.. 116 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.354 -0.305 -0.251 -0.164 -0.174 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 116"
[1] "ENDing cell.. 116 With feature... zCoord"
[1] "STARTing cell.. 176 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.057999 -0.000743 -0.145059 0.067098 -0.082456 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 176"
[1] "ENDing cell.. 176 With feature... zCoord"
[1] "STARTing cell.. 235 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1 -0.0394 -0.274 -0.0888 -0.1912 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 235"
[1] "ENDing cell.. 235 With feature... zCoord"
[1] "STARTing cell.. 38 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0441 -0.017 0.1004 0.2617 0.165 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 38"
[1] "ENDing cell.. 38 With feature... zCoord"
[1] "STARTing cell.. 105 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0824 -0.04193 -0.00606 0.02333 0.1389 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 105"
[1] "ENDing cell.. 105 With feature... zCoord"
[1] "STARTing cell.. 193 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.131 0.169 0.255 0.267 0.32 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 193"
[1] "ENDing cell.. 193 With feature... zCoord"
[1] "STARTing cell.. 181 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.135518 -0.149525 -0.07404 -0.059299 0.000671 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 181"
[1] "ENDing cell.. 181 With feature... zCoord"
[1] "STARTing cell.. 28 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.12793 -0.0926 -0.04995 0.00911 0.17957 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 28"
[1] "ENDing cell.. 28 With feature... zCoord"
[1] "STARTing cell.. 98 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0584 0.1098 0.1759 0.324 0.2718 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 98"
[1] "ENDing cell.. 98 With feature... zCoord"
[1] "STARTing cell.. 200 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.14491 -0.11274 -0.04434 -0.00993 0.07824 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 200"
[1] "ENDing cell.. 200 With feature... zCoord"
[1] "STARTing cell.. 209 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.232 -0.234 -0.311 -0.27 -0.325 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 209"
[1] "ENDing cell.. 209 With feature... zCoord"
[1] "STARTing cell.. 278 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.00243 -0.02873 -0.03207 0.08018 -0.05742 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 278"
[1] "ENDing cell.. 278 With feature... zCoord"
[1] "STARTing cell.. 75 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0806 0.0367 0.1591 0.3321 0.1215 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 75"
[1] "ENDing cell.. 75 With feature... zCoord"
[1] "STARTing cell.. 141 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0772 0.0188 0.0623 0.1856 0.2467 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 141"
[1] "ENDing cell.. 141 With feature... zCoord"
[1] "STARTing cell.. 259 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0565 0.1264 0.1345 0.3041 0.2519 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 259"
[1] "ENDing cell.. 259 With feature... zCoord"
[1] "STARTing cell.. 16 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.09383 -0.16806 -0.18686 -0.0588 -0.00463 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 16"
[1] "ENDing cell.. 16 With feature... zCoord"
[1] "STARTing cell.. 267 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.029 -0.02023 -0.00275 0.12685 0.11358 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 267"
[1] "ENDing cell.. 267 With feature... zCoord"
[1] "STARTing cell.. 201 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0624 0.1418 0.2142 0.2646 0.2678 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 201"
[1] "ENDing cell.. 201 With feature... zCoord"
[1] "STARTing cell.. 117 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.107 0.146 0.17 0.216 0.314 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 117"
[1] "ENDing cell.. 117 With feature... zCoord"
[1] "STARTing cell.. 177 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1529 -0.0863 -0.092 0.0993 0.1527 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 177"
[1] "ENDing cell.. 177 With feature... zCoord"
[1] "STARTing cell.. 15 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.07676 -0.00866 0.04746 0.06486 0.16382 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 15"
[1] "ENDing cell.. 15 With feature... zCoord"
[1] "STARTing cell.. 106 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.103 0.105 0.122 0.182 0.212 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 106"
[1] "ENDing cell.. 106 With feature... zCoord"
[1] "STARTing cell.. 194 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.067 -0.138 -0.203 -0.132 -0.138 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 194"
[1] "ENDing cell.. 194 With feature... zCoord"
[1] "STARTing cell.. 31 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1103 0.00684 0.06912 -0.11992 -0.01243 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 31"
[1] "ENDing cell.. 31 With feature... zCoord"
[1] "STARTing cell.. 77 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1448 -0.0741 -0.0279 0.0943 0.0654 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 77"
[1] "ENDing cell.. 77 With feature... zCoord"
[1] "STARTing cell.. 91 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0585 0.0917 0.166 0.2524 0.328 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 91"
[1] "ENDing cell.. 91 With feature... zCoord"
[1] "STARTing cell.. 142 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.141 -0.1 -0.1483 0.0373 -0.0595 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 142"
[1] "ENDing cell.. 142 With feature... zCoord"
[1] "STARTing cell.. 17 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0317 0.0325 0.1052 0.0224 0.1671 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 17"
[1] "ENDing cell.. 17 With feature... zCoord"
[1] "STARTing cell.. 62 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1153 -0.0154 0.0248 -0.1176 0.0046 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 62"
[1] "ENDing cell.. 62 With feature... zCoord"
[1] "STARTing cell.. 168 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2558 -0.258 -0.3507 -0.1853 -0.0878 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 168"
[1] "ENDing cell.. 168 With feature... zCoord"
[1] "STARTing cell.. 127 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0604 0.0578 0.0575 0.0337 0.1109 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 127"
[1] "ENDing cell.. 127 With feature... zCoord"
[1] "STARTing cell.. 253 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0186 0.0724 0.097 0.2803 0.0833 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 253"
[1] "ENDing cell.. 253 With feature... zCoord"
[1] "STARTing cell.. 118 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0305 0.0363 -0.1849 0.1524 -0.0781 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 118"
[1] "ENDing cell.. 118 With feature... zCoord"
[1] "STARTing cell.. 39 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0617 -0.0408 0.0657 0.2116 0.109 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 39"
[1] "ENDing cell.. 39 With feature... zCoord"
[1] "STARTing cell.. 107 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.176 0.239 0.301 0.395 0.404 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 107"
[1] "ENDing cell.. 107 With feature... zCoord"
[1] "STARTing cell.. 196 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0379 0.1149 -0.2392 0.2033 -0.0241 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 196"
[1] "ENDing cell.. 196 With feature... zCoord"
[1] "STARTing cell.. 212 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.17 0.246 0.318 0.396 0.471 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 212"
[1] "ENDing cell.. 212 With feature... zCoord"
[1] "STARTing cell.. 79 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.06324 0.03125 0.00238 0.21742 0.02473 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 79"
[1] "ENDing cell.. 79 With feature... zCoord"
[1] "STARTing cell.. 143 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0311 0.1157 -0.2067 0.2005 -0.0483 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 143"
[1] "ENDing cell.. 143 With feature... zCoord"
[1] "STARTing cell.. 92 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.00111 0.01005 -0.02033 0.07974 0.17185 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 92"
[1] "ENDing cell.. 92 With feature... zCoord"
[1] "STARTing cell.. 169 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.11 -0.202 -0.409 -0.325 -0.223 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 169"
[1] "ENDing cell.. 169 With feature... zCoord"
[1] "STARTing cell.. 254 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0754 0.0246 -0.0319 0.2238 -0.0241 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 254"
[1] "ENDing cell.. 254 With feature... zCoord"
[1] "STARTing cell.. 269 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0476 0.0464 -0.0485 0.1685 0.0287 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 269"
[1] "ENDing cell.. 269 With feature... zCoord"
[1] "STARTing cell.. 119 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1057 -0.0101 0.075 0.1707 0.2695 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 119"
[1] "ENDing cell.. 119 With feature... zCoord"
[1] "STARTing cell.. 180 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0121 0.0857 -0.2496 0.1533 0.0292 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 180"
[1] "ENDing cell.. 180 With feature... zCoord"
[1] "STARTing cell.. 151 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1058 0.11 0.0015 -0.2351 -0.1679 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 151"
[1] "ENDing cell.. 151 With feature... zCoord"
[1] "STARTing cell.. 40 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0866 0.0455 0.109 0.2594 0.1236 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 40"
[1] "ENDing cell.. 40 With feature... zCoord"
[1] "STARTing cell.. 191 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1578 -0.1124 -0.0166 0.0753 0.1591 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 191"
[1] "ENDing cell.. 191 With feature... zCoord"
[1] "STARTing cell.. 108 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0384 0.008 0.0598 0.114 0.2425 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 108"
[1] "ENDing cell.. 108 With feature... zCoord"
[1] "STARTing cell.. 198 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0883 0.1016 -0.0765 0.4009 -0.1094 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 198"
[1] "ENDing cell.. 198 With feature... zCoord"
[1] "STARTing cell.. 144 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.00582 0.09689 -0.01919 0.20858 0.13459 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 144"
[1] "ENDing cell.. 144 With feature... zCoord"
[1] "STARTing cell.. 170 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0639 0.0834 -0.2448 0.1078 -0.0129 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 170"
[1] "ENDing cell.. 170 With feature... zCoord"
[1] "STARTing cell.. 270 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2806 -0.19803 -0.17999 -0.01706 -0.00441 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 270"
[1] "ENDing cell.. 270 With feature... zCoord"
[1] "STARTing cell.. 41 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.10369 -0.06212 -0.00422 0.0771 0.21134 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 41"
[1] "ENDing cell.. 41 With feature... zCoord"
[1] "STARTing cell.. 154 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2003 0.00512 0.15492 -0.1239 -0.24953 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 154"
[1] "ENDing cell.. 154 With feature... zCoord"
[1] "STARTing cell.. 90 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1343 -0.1454 -0.0737 0.0241 0.0843 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 90"
[1] "ENDing cell.. 90 With feature... zCoord"
[1] "STARTing cell.. 145 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.062 0.123 0.122 0.281 0.261 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 145"
[1] "ENDing cell.. 145 With feature... zCoord"
[1] "STARTing cell.. 271 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.34082 -0.30894 -0.22919 -0.0854 0.00106 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 271"
[1] "ENDing cell.. 271 With feature... zCoord"
[1] "STARTing cell.. 183 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1892 0.0425 -0.0728 -0.2087 -0.0564 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 183"
[1] "ENDing cell.. 183 With feature... zCoord"
[1] "STARTing cell.. 147 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0921 0.1336 0.0975 0.1111 0.1636 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 147"
[1] "ENDing cell.. 147 With feature... zCoord"
[1] "STARTing cell.. 178 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0774 -0.1663 -0.0803 -0.0713 -0.1269 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 178"
[1] "ENDing cell.. 178 With feature... zCoord"
[1] "STARTing cell.. 272 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0273 0.0695 0.0843 0.2329 0.1967 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 272"
[1] "ENDing cell.. 272 With feature... zCoord"
[1] "STARTing cell.. 43 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.103 -0.0238 0.031 0.132 0.2028 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 43"
[1] "ENDing cell.. 43 With feature... zCoord"
[1] "STARTing cell.. 99 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.00832 0.05665 0.13535 0.21845 0.28542 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 99"
[1] "ENDing cell.. 99 With feature... zCoord"
[1] "STARTing cell.. 155 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.225 -0.146 -0.124 -0.263 -0.196 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 155"
[1] "ENDing cell.. 155 With feature... zCoord"
[1] "STARTing cell.. 148 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1599 -0.14 -0.1999 -0.0387 -0.0654 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 148"
[1] "ENDing cell.. 148 With feature... zCoord"
[1] "STARTing cell.. 215 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0308 0.0496 0.0969 0.1557 0.1935 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 215"
[1] "ENDing cell.. 215 With feature... zCoord"
[1] "STARTing cell.. 149 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.09 0.169 0.246 0.325 0.418 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 149"
[1] "ENDing cell.. 149 With feature... zCoord"
[1] "STARTing cell.. 89 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1285 -0.0502 -0.0279 0.0369 0.1144 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 89"
[1] "ENDing cell.. 89 With feature... zCoord"
[1] "STARTing cell.. 156 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0144 0.0128 -0.0634 -0.1768 -0.0365 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 156"
[1] "ENDing cell.. 156 With feature... zCoord"
[1] "STARTing cell.. 150 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1744 -0.1393 -0.1411 -0.0029 0.0714 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 150"
[1] "ENDing cell.. 150 With feature... zCoord"
[1] "STARTing cell.. 42 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.038 0.0191 0.1028 0.2214 0.2814 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 42"
[1] "ENDing cell.. 42 With feature... zCoord"
[1] "STARTing cell.. 44 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1933 -0.1696 -0.1634 -0.0959 -0.0102 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 44"
[1] "ENDing cell.. 44 With feature... zCoord"
[1] "STARTing cell.. 100 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0677 0.046 -0.0475 0.2211 -0.0398 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 100"
[1] "ENDing cell.. 100 With feature... zCoord"
[1] "STARTing cell.. 153 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.142 0.208 0.261 0.345 0.409 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 153"
[1] "ENDing cell.. 153 With feature... zCoord"
[1] "STARTing cell.. 47 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1926 -0.0489 -0.0141 -0.0851 0.0716 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 47"
[1] "ENDing cell.. 47 With feature... zCoord"
[1] "STARTing cell.. 202 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1394 0.0866 0.0193 0.0903 0.2457 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 202"
[1] "ENDing cell.. 202 With feature... zCoord"
[1] "STARTing cell.. 51 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2691 -0.2305 -0.079 -0.0966 -0.0614 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 51"
[1] "ENDing cell.. 51 With feature... zCoord"
[1] "STARTing cell.. 260 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0304 0.0925 -0.0272 0.2225 0.1943 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 260"
[1] "ENDing cell.. 260 With feature... zCoord"
[1] "STARTing cell.. 217 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.00774 -0.0063 0.03787 0.08619 0.19276 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 217"
[1] "ENDing cell.. 217 With feature... zCoord"
[1] "STARTing cell.. 182 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1343 -0.1166 -0.0597 0.0382 0.1296 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 182"
[1] "ENDing cell.. 182 With feature... zCoord"
[1] "STARTing cell.. 184 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0961 -0.0831 -0.0371 0.0179 0.109 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 184"
[1] "ENDing cell.. 184 With feature... zCoord"
[1] "STARTing cell.. 45 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0654 -0.076 -0.0549 -0.0508 0.0129 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 45"
[1] "ENDing cell.. 45 With feature... zCoord"
[1] "STARTing cell.. 241 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0387 -0.1507 -0.158 -0.1695 -0.1675 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 241"
[1] "ENDing cell.. 241 With feature... zCoord"
[1] "STARTing cell.. 82 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0198 -0.0899 -0.1271 0.1509 0.1296 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 82"
[1] "ENDing cell.. 82 With feature... zCoord"
[1] "STARTing cell.. 261 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.1234 0.0339 -0.2064 0.0872 -0.0337 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 261"
[1] "ENDing cell.. 261 With feature... zCoord"
[1] "STARTing cell.. 262 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.039492 0.02363 -0.146479 0.024306 -0.000743 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 262"
[1] "ENDing cell.. 262 With feature... zCoord"
[1] "STARTing cell.. 216 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.134 0.11 0.09 0.122 0.15 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 216"
[1] "ENDing cell.. 216 With feature... zCoord"
[1] "STARTing cell.. 66 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1653 -0.0971 -0.0308 0.06 0.1463 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 66"
[1] "ENDing cell.. 66 With feature... zCoord"
[1] "STARTing cell.. 128 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.09351 -0.22452 -0.18042 -0.0553 -0.00025 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 128"
[1] "ENDing cell.. 128 With feature... zCoord"
[1] "STARTing cell.. 50 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1916 -0.0433 -0.0782 -0.0986 0.0791 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 50"
[1] "ENDing cell.. 50 With feature... zCoord"
[1] "STARTing cell.. 5 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.203 -0.153 -0.101 -0.105 0.112 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 5"
[1] "ENDing cell.. 5 With feature... zCoord"
[1] "STARTing cell.. 26 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2176 -0.2237 -0.2354 -0.0255 0.0155 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 26"
[1] "ENDing cell.. 26 With feature... zCoord"
[1] "STARTing cell.. 129 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0197 -0.1038 -0.0808 0.0492 0.084 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 129"
[1] "ENDing cell.. 129 With feature... zCoord"
[1] "STARTing cell.. 67 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.2556 -0.0493 0.0971 0.0946 -0.1617 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 67"
[1] "ENDing cell.. 67 With feature... zCoord"
[1] "STARTing cell.. 247 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.195 -0.1835 -0.1461 -0.1188 -0.0371 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 247"
[1] "ENDing cell.. 247 With feature... zCoord"
[1] "STARTing cell.. 134 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.08522 -0.00497 0.09273 0.17191 0.2644 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 134"
[1] "ENDing cell.. 134 With feature... zCoord"
[1] "STARTing cell.. 93 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.129 -0.126 -0.271 -0.105 0.147 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 93"
[1] "ENDing cell.. 93 With feature... zCoord"
[1] "STARTing cell.. 248 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.08212 -0.02155 -0.00729 0.12964 -0.24743 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 248"
[1] "ENDing cell.. 248 With feature... zCoord"
[1] "STARTing cell.. 157 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0108 -0.0216 -0.0608 -0.0296 -0.0151 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 157"
[1] "ENDing cell.. 157 With feature... zCoord"
[1] "STARTing cell.. 46 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.072762 -0.006741 0.000326 -0.058951 -0.02326 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 46"
[1] "ENDing cell.. 46 With feature... zCoord"
[1] "STARTing cell.. 242 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.00991 0.05646 0.08536 0.17737 0.21539 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 242"
[1] "ENDing cell.. 242 With feature... zCoord"
[1] "STARTing cell.. 159 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.171055 -0.187906 -0.117038 -0.000339 0.020854 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 159"
[1] "ENDing cell.. 159 With feature... zCoord"
[1] "STARTing cell.. 186 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.011 -0.126 -0.122 -0.165 0.108 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 186"
[1] "ENDing cell.. 186 With feature... zCoord"
[1] "STARTing cell.. 228 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0785 -0.2612 -0.2153 -0.1204 -0.0517 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 228"
[1] "ENDing cell.. 228 With feature... zCoord"
[1] "STARTing cell.. 160 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.133 0.236 0.227 -0.157 -0.191 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 160"
[1] "ENDing cell.. 160 With feature... zCoord"
[1] "STARTing cell.. 279 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1086 -0.0935 -0.1706 0.0713 -0.1944 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 279"
[1] "ENDing cell.. 279 With feature... zCoord"
[1] "STARTing cell.. 53 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1734 -0.2074 -0.2546 -0.2697 -0.0644 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 53"
[1] "ENDing cell.. 53 With feature... zCoord"
[1] "STARTing cell.. 94 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.08468 -0.00825 -0.04959 -0.12511 0.18234 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 94"
[1] "ENDing cell.. 94 With feature... zCoord"
[1] "STARTing cell.. 121 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0971 0.0393 0.0874 -0.1992 -0.1116 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 121"
[1] "ENDing cell.. 121 With feature... zCoord"
[1] "STARTing cell.. 213 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0964 -0.0409 -0.0213 0.0793 0.1622 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 213"
[1] "ENDing cell.. 213 With feature... zCoord"
[1] "STARTing cell.. 109 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.4 -0.368 -0.349 -0.285 -0.17 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 109"
[1] "ENDing cell.. 109 With feature... zCoord"
[1] "STARTing cell.. 110 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1689 -0.0669 -0.0727 -0.0846 -0.1268 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 110"
[1] "ENDing cell.. 110 With feature... zCoord"
[1] "STARTing cell.. 101 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.1135 -0.0806 -0.1184 0.0983 0.0607 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 101"
[1] "ENDing cell.. 101 With feature... zCoord"
[1] "STARTing cell.. 187 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.2738 -0.2143 -0.126 -0.0455 0.0999 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 187"
[1] "ENDing cell.. 187 With feature... zCoord"
[1] "STARTing cell.. 263 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.19099 0.062021 -0.259723 0.000838 -0.015348 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 263"
[1] "ENDing cell.. 263 With feature... zCoord"
[1] "STARTing cell.. 218 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0835 -0.0815 -0.1416 0.0543 0.1728 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 218"
[1] "ENDing cell.. 218 With feature... zCoord"
[1] "STARTing cell.. 19 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.0638 -0.1123 -0.0638 -0.0335 -0.0434 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 19"
[1] "ENDing cell.. 19 With feature... zCoord"
[1] "STARTing cell.. 20 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] 0.0853 0.2537 0.0791 -0.1487 -0.2098 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 20"
[1] "ENDing cell.. 20 With feature... zCoord"
[1] "STARTing cell.. 224 With feature... zCoord"
List of 6
$ acf : num [1:27, 1, 1] -0.23235 -0.19499 -0.10113 -0.00165 0.09367 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 224"
[1] "ENDing cell.. 224 With feature... zCoord"
[1] "STARTing cell.. 219 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.15592 0.04173 -0.01902 0.00432 0.11286 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 219"
[1] "ENDing cell.. 219 With feature... nProtrusions"
[1] "STARTing cell.. 264 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.00462 0.06967 0.12567 0.23965 0.01024 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 264"
[1] "ENDing cell.. 264 With feature... nProtrusions"
[1] "STARTing cell.. 136 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.08051 0.00473 0.18939 -0.04081 -0.12005 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 136"
[1] "ENDing cell.. 136 With feature... nProtrusions"
[1] "STARTing cell.. 54 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0762 0.1659 0.0132 -0.0808 0.0994 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 54"
[1] "ENDing cell.. 54 With feature... nProtrusions"
[1] "STARTing cell.. 69 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.08272 0.15214 0.17001 0.06416 0.00183 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 69"
[1] "ENDing cell.. 69 With feature... nProtrusions"
[1] "STARTing cell.. 111 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0556 0.11303 0.13677 -0.00925 0.13721 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 111"
[1] "ENDing cell.. 111 With feature... nProtrusions"
[1] "STARTing cell.. 189 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0667 0.115 0.1234 0.1495 0.1345 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 189"
[1] "ENDing cell.. 189 With feature... nProtrusions"
[1] "STARTing cell.. 171 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.1367 0.0348 -0.0487 0.1151 0.1641 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 171"
[1] "ENDing cell.. 171 With feature... nProtrusions"
[1] "STARTing cell.. 231 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.2332 0.0133 -0.0834 0.0454 0.1839 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 231"
[1] "ENDing cell.. 231 With feature... nProtrusions"
[1] "STARTing cell.. 205 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.096647 0.034027 -0.059053 -0.000879 -0.040916 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 205"
[1] "ENDing cell.. 205 With feature... nProtrusions"
[1] "STARTing cell.. 244 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.00465 0.07606 0.08254 0.03922 0.0625 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 244"
[1] "ENDing cell.. 244 With feature... nProtrusions"
[1] "STARTing cell.. 1 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.071 0.0872 0.064 -0.029 -0.1065 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 1"
[1] "ENDing cell.. 1 With feature... nProtrusions"
[1] "STARTing cell.. 36 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0385 0.0472 0.1683 0.1019 -0.0645 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 36"
[1] "ENDing cell.. 36 With feature... nProtrusions"
[1] "STARTing cell.. 7 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0505 0.2148 0.2129 -0.0758 0.0293 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 7"
[1] "ENDing cell.. 7 With feature... nProtrusions"
[1] "STARTing cell.. 102 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0799 0.1364 -0.0426 -0.2901 -0.1439 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 102"
[1] "ENDing cell.. 102 With feature... nProtrusions"
[1] "STARTing cell.. 22 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.2039 -0.0546 -0.2431 -0.2414 -0.3531 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 22"
[1] "ENDing cell.. 22 With feature... nProtrusions"
[1] "STARTing cell.. 188 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.09861 0.12757 0.13752 -0.00328 -0.3295 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 188"
[1] "ENDing cell.. 188 With feature... nProtrusions"
[1] "STARTing cell.. 55 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0667 -0.0581 -0.0837 -0.1965 -0.0962 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 55"
[1] "ENDing cell.. 55 With feature... nProtrusions"
[1] "STARTing cell.. 243 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0697 -0.1591 -0.0269 -0.1476 -0.18 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 243"
[1] "ENDing cell.. 243 With feature... nProtrusions"
[1] "STARTing cell.. 123 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.3241 0.0659 -0.085 0.0698 -0.3378 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 123"
[1] "ENDing cell.. 123 With feature... nProtrusions"
[1] "STARTing cell.. 21 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.046 -0.1577 0.0725 0.1372 -0.0277 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 21"
[1] "ENDing cell.. 21 With feature... nProtrusions"
[1] "STARTing cell.. 163 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.06391 0.047705 0.214548 0.000757 0.212844 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 163"
[1] "ENDing cell.. 163 With feature... nProtrusions"
[1] "STARTing cell.. 112 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.06626 0.17539 -0.00734 -0.11784 0.19464 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 112"
[1] "ENDing cell.. 112 With feature... nProtrusions"
[1] "STARTing cell.. 33 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0349 0.0222 0.0551 0.074 0.021 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 33"
[1] "ENDing cell.. 33 With feature... nProtrusions"
[1] "STARTing cell.. 172 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -9.50e-02 5.60e-02 5.60e-02 -1.25e-17 3.75e-17 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 172"
[1] "ENDing cell.. 172 With feature... nProtrusions"
[1] "STARTing cell.. 95 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.13696 0.02251 -0.0863 -0.00516 0.14634 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 95"
[1] "ENDing cell.. 95 With feature... nProtrusions"
[1] "STARTing cell.. 30 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.186 0.155 0.3 0.216 0.18 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 30"
[1] "ENDing cell.. 30 With feature... nProtrusions"
[1] "STARTing cell.. 203 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0616 0.06 0.0501 -0.0917 -0.2697 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 203"
[1] "ENDing cell.. 203 With feature... nProtrusions"
[1] "STARTing cell.. 274 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.315626 0.000476 0.309444 0.240326 0.114139 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 274"
[1] "ENDing cell.. 274 With feature... nProtrusions"
[1] "STARTing cell.. 131 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.1051 -0.1899 -0.0627 0.2592 -0.0522 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 131"
[1] "ENDing cell.. 131 With feature... nProtrusions"
[1] "STARTing cell.. 68 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0196 -0.0217 -0.0932 -0.0402 -0.0912 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 68"
[1] "ENDing cell.. 68 With feature... nProtrusions"
[1] "STARTing cell.. 71 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.045 0.166 0.192 0.297 0.308 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 71"
[1] "ENDing cell.. 71 With feature... nProtrusions"
[1] "STARTing cell.. 135 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0388 -0.0429 0.0324 0.078 0.0965 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 135"
[1] "ENDing cell.. 135 With feature... nProtrusions"
[1] "STARTing cell.. 84 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.054 0.0399 0.0799 -0.0174 -0.0273 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 84"
[1] "ENDing cell.. 84 With feature... nProtrusions"
[1] "STARTing cell.. 206 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.2543 0.2496 0.2221 0.1626 -0.0908 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 206"
[1] "ENDing cell.. 206 With feature... nProtrusions"
[1] "STARTing cell.. 255 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.018 -0.0459 -0.1857 0.0687 0.0412 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 255"
[1] "ENDing cell.. 255 With feature... nProtrusions"
[1] "STARTing cell.. 64 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.075 -0.136 0.1863 0.0318 -0.055 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 64"
[1] "ENDing cell.. 64 With feature... nProtrusions"
[1] "STARTing cell.. 9 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0314 0.1835 -0.2793 0.0333 -0.1202 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 9"
[1] "ENDing cell.. 9 With feature... nProtrusions"
[1] "STARTing cell.. 122 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.1104 -0.0635 -0.0786 0.0174 -0.0522 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 122"
[1] "ENDing cell.. 122 With feature... nProtrusions"
[1] "STARTing cell.. 23 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.2896 -0.0403 -0.068 -0.136 -0.1404 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 23"
[1] "ENDing cell.. 23 With feature... nProtrusions"
[1] "STARTing cell.. 162 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.00834 -0.01219 -0.11938 -0.03273 -0.04108 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 162"
[1] "ENDing cell.. 162 With feature... nProtrusions"
[1] "STARTing cell.. 229 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.275 0.237 0.112 0.119 0.141 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 229"
[1] "ENDing cell.. 229 With feature... nProtrusions"
[1] "STARTing cell.. 57 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.2028 0.0589 0.0814 0.0224 0.0245 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 57"
[1] "ENDing cell.. 57 With feature... nProtrusions"
[1] "STARTing cell.. 249 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.13546 0.09926 0.25606 0.00482 -0.25964 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 249"
[1] "ENDing cell.. 249 With feature... nProtrusions"
[1] "STARTing cell.. 125 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.106 -0.232 -0.015 0.205 0.023 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 125"
[1] "ENDing cell.. 125 With feature... nProtrusions"
[1] "STARTing cell.. 8 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.00171 0.14117 0.07051 -0.10786 0.19891 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 8"
[1] "ENDing cell.. 8 With feature... nProtrusions"
[1] "STARTing cell.. 165 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0846 0.0768 0.0511 -0.1137 0.1705 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 165"
[1] "ENDing cell.. 165 With feature... nProtrusions"
[1] "STARTing cell.. 83 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0297 0.1066 0.0113 -0.0668 -0.078 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 83"
[1] "ENDing cell.. 83 With feature... nProtrusions"
[1] "STARTing cell.. 113 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0239 -0.0782 -0.0157 0.0548 -0.2279 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 113"
[1] "ENDing cell.. 113 With feature... nProtrusions"
[1] "STARTing cell.. 220 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0788 0.1081 0.1649 0.0586 -0.1805 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 220"
[1] "ENDing cell.. 220 With feature... nProtrusions"
[1] "STARTing cell.. 174 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 6.05e-02 -8.82e-18 1.28e-01 1.32e-01 8.22e-02 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 174"
[1] "ENDing cell.. 174 With feature... nProtrusions"
[1] "STARTing cell.. 56 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.119 0.1585 0.0398 -0.0836 0.1186 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 56"
[1] "ENDing cell.. 56 With feature... nProtrusions"
[1] "STARTing cell.. 173 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.4083 0.0508 0.0816 0.0681 0.1432 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 173"
[1] "ENDing cell.. 173 With feature... nProtrusions"
[1] "STARTing cell.. 232 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.058 0.069 -0.106 -0.139 -0.204 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 232"
[1] "ENDing cell.. 232 With feature... nProtrusions"
[1] "STARTing cell.. 37 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.094 -0.0393 0.1574 0.2218 -0.2359 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 37"
[1] "ENDing cell.. 37 With feature... nProtrusions"
[1] "STARTing cell.. 86 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.00991 0.09009 0.07113 -0.05203 -0.03213 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 86"
[1] "ENDing cell.. 86 With feature... nProtrusions"
[1] "STARTing cell.. 103 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0904 -0.0564 -0.089 -0.2208 -0.2127 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 103"
[1] "ENDing cell.. 103 With feature... nProtrusions"
[1] "STARTing cell.. 208 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0653 -0.2807 -0.1167 -0.1965 -0.246 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 208"
[1] "ENDing cell.. 208 With feature... nProtrusions"
[1] "STARTing cell.. 190 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0847 -0.0623 0.0807 -0.017 -0.027 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 190"
[1] "ENDing cell.. 190 With feature... nProtrusions"
[1] "STARTing cell.. 4 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0421 0.0321 0.0281 -0.0684 0.186 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 4"
[1] "ENDing cell.. 4 With feature... nProtrusions"
[1] "STARTing cell.. 238 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0301 0.0444 0.0518 -0.1196 0.1111 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 238"
[1] "ENDing cell.. 238 With feature... nProtrusions"
[1] "STARTing cell.. 11 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.1323 0.0669 -0.1259 0.2355 -0.0797 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 11"
[1] "ENDing cell.. 11 With feature... nProtrusions"
[1] "STARTing cell.. 29 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.03927 -0.21317 -0.20501 -0.00663 -0.01479 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 29"
[1] "ENDing cell.. 29 With feature... nProtrusions"
[1] "STARTing cell.. 59 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.1669 -0.0371 -0.1169 0.05 -0.0637 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 59"
[1] "ENDing cell.. 59 With feature... nProtrusions"
[1] "STARTing cell.. 96 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0526 0.1348 -0.0155 0.082 0.1969 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 96"
[1] "ENDing cell.. 96 With feature... nProtrusions"
[1] "STARTing cell.. 204 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.00337 0.15517 0.05612 0.04354 0.17908 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 204"
[1] "ENDing cell.. 204 With feature... nProtrusions"
[1] "STARTing cell.. 275 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.336 0.213 0.23 0.151 0.23 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 275"
[1] "ENDing cell.. 275 With feature... nProtrusions"
[1] "STARTing cell.. 130 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0836 0.176 0.1609 0.1846 0.0972 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 130"
[1] "ENDing cell.. 130 With feature... nProtrusions"
[1] "STARTing cell.. 137 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0171 -0.0109 -0.2025 -0.4034 -0.2615 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 137"
[1] "ENDing cell.. 137 With feature... nProtrusions"
[1] "STARTing cell.. 140 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0171 -0.0933 -0.0233 -0.0435 -0.0617 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 140"
[1] "ENDing cell.. 140 With feature... nProtrusions"
[1] "STARTing cell.. 226 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.00768 0.29681 0.02379 0.06085 0.07823 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 226"
[1] "ENDing cell.. 226 With feature... nProtrusions"
[1] "STARTing cell.. 74 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.11 0.159 0.206 0.159 0.132 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 74"
[1] "ENDing cell.. 74 With feature... nProtrusions"
[1] "STARTing cell.. 256 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0146 0.0256 0.0803 0.1686 0.2401 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 256"
[1] "ENDing cell.. 256 With feature... nProtrusions"
[1] "STARTing cell.. 65 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.00798 -0.00973 -0.0024 -0.00247 -0.00684 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 65"
[1] "ENDing cell.. 65 With feature... nProtrusions"
[1] "STARTing cell.. 87 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0114 0.1686 0.2037 0.3286 0.3751 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 87"
[1] "ENDing cell.. 87 With feature... nProtrusions"
[1] "STARTing cell.. 124 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0812 -0.1754 -0.1167 -0.0244 0.0111 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 124"
[1] "ENDing cell.. 124 With feature... nProtrusions"
[1] "STARTing cell.. 210 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0293 -0.1137 -0.1533 0.0138 -0.0741 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 210"
[1] "ENDing cell.. 210 With feature... nProtrusions"
[1] "STARTing cell.. 164 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0283 -0.0109 -0.1192 -0.0933 -0.0949 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 164"
[1] "ENDing cell.. 164 With feature... nProtrusions"
[1] "STARTing cell.. 230 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.22661 0.08997 -0.00115 0.13319 0.09515 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 230"
[1] "ENDing cell.. 230 With feature... nProtrusions"
[1] "STARTing cell.. 13 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.09599 -0.11111 -0.10881 -0.00981 -0.07199 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 13"
[1] "ENDing cell.. 13 With feature... nProtrusions"
[1] "STARTing cell.. 250 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.18326 0.1277 -0.00315 0.13396 -0.20872 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 250"
[1] "ENDing cell.. 250 With feature... nProtrusions"
[1] "STARTing cell.. 10 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0966 0.3505 0.2051 0.0849 0.1254 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 10"
[1] "ENDing cell.. 10 With feature... nProtrusions"
[1] "STARTing cell.. 85 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.011 0.0931 -0.0978 0.1702 -0.3113 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 85"
[1] "ENDing cell.. 85 With feature... nProtrusions"
[1] "STARTing cell.. 61 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0152 -0.1539 0.2284 -0.049 -0.0568 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 61"
[1] "ENDing cell.. 61 With feature... nProtrusions"
[1] "STARTing cell.. 221 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0953 0.0169 0.1206 -0.0143 0.0754 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 221"
[1] "ENDing cell.. 221 With feature... nProtrusions"
[1] "STARTing cell.. 265 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0534 0.194 0.2318 0.2362 0.2406 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 265"
[1] "ENDing cell.. 265 With feature... nProtrusions"
[1] "STARTing cell.. 58 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0419 0.1216 0.0732 0.0641 0.0358 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 58"
[1] "ENDing cell.. 58 With feature... nProtrusions"
[1] "STARTing cell.. 114 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.127 0.0123 -0.0675 0.0681 -0.2117 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 114"
[1] "ENDing cell.. 114 With feature... nProtrusions"
[1] "STARTing cell.. 233 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.06147 -0.08914 -0.15982 -0.03961 -0.00945 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 233"
[1] "ENDing cell.. 233 With feature... nProtrusions"
[1] "STARTing cell.. 246 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0804 0.00213 0.14339 0.08 -0.07694 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 246"
[1] "ENDing cell.. 246 With feature... nProtrusions"
[1] "STARTing cell.. 104 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0675 -0.1081 -0.1288 -0.212 -0.1902 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 104"
[1] "ENDing cell.. 104 With feature... nProtrusions"
[1] "STARTing cell.. 76 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0553 0.0329 0.0154 -0.0309 0.0539 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 76"
[1] "ENDing cell.. 76 With feature... nProtrusions"
[1] "STARTing cell.. 239 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.105 -0.0328 -0.043 -0.0742 -0.0928 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 239"
[1] "ENDing cell.. 239 With feature... nProtrusions"
[1] "STARTing cell.. 88 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.01921 0.06743 0.02319 0.00569 0.04611 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 88"
[1] "ENDing cell.. 88 With feature... nProtrusions"
[1] "STARTing cell.. 211 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0977 0.00122 0.18288 0.16917 0.00856 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 211"
[1] "ENDing cell.. 211 With feature... nProtrusions"
[1] "STARTing cell.. 24 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.1092 0.4153 -0.1806 0.0564 -0.2556 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 24"
[1] "ENDing cell.. 24 With feature... nProtrusions"
[1] "STARTing cell.. 276 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.172 0.154 0.095 -0.217 -0.073 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 276"
[1] "ENDing cell.. 276 With feature... nProtrusions"
[1] "STARTing cell.. 115 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.1811 0.1151 0.0808 0.0456 0.1486 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 115"
[1] "ENDing cell.. 115 With feature... nProtrusions"
[1] "STARTing cell.. 132 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.3 0.208 -0.156 -0.161 0.398 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 132"
[1] "ENDing cell.. 132 With feature... nProtrusions"
[1] "STARTing cell.. 138 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0763 -0.0743 0.1118 0.0755 -0.0991 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 138"
[1] "ENDing cell.. 138 With feature... nProtrusions"
[1] "STARTing cell.. 227 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 227"
[1] "ENDing cell.. 227 With feature... nProtrusions"
[1] "STARTing cell.. 257 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.00664 -0.12601 -0.14015 -0.19592 -0.16588 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 257"
[1] "ENDing cell.. 257 With feature... nProtrusions"
[1] "STARTing cell.. 133 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.11003 -0.07597 0.00665 -0.12652 0.0596 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 133"
[1] "ENDing cell.. 133 With feature... nProtrusions"
[1] "STARTing cell.. 126 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.1727 0.1021 0.1661 0.0197 0.1563 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 126"
[1] "ENDing cell.. 126 With feature... nProtrusions"
[1] "STARTing cell.. 78 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.05851 -0.00305 -0.11261 0.10546 0.05011 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 78"
[1] "ENDing cell.. 78 With feature... nProtrusions"
[1] "STARTing cell.. 166 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0446 -0.1032 -0.032 0.1272 0.0865 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 166"
[1] "ENDing cell.. 166 With feature... nProtrusions"
[1] "STARTing cell.. 195 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0801 -0.0211 -0.1669 -0.2908 -0.087 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 195"
[1] "ENDing cell.. 195 With feature... nProtrusions"
[1] "STARTing cell.. 251 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0558 0.1033 0.0222 -0.1365 -0.1768 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 251"
[1] "ENDing cell.. 251 With feature... nProtrusions"
[1] "STARTing cell.. 12 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.06943 0.01019 0.08319 0.00226 -0.13538 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 12"
[1] "ENDing cell.. 12 With feature... nProtrusions"
[1] "STARTing cell.. 222 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.12527 -0.00515 0.06087 -0.01732 0.03143 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 222"
[1] "ENDing cell.. 222 With feature... nProtrusions"
[1] "STARTing cell.. 60 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0278 0.0318 -0.0416 -0.1469 -0.0858 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 60"
[1] "ENDing cell.. 60 With feature... nProtrusions"
[1] "STARTing cell.. 63 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.2276 -0.0994 -0.2671 -0.0368 -0.03 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 63"
[1] "ENDing cell.. 63 With feature... nProtrusions"
[1] "STARTing cell.. 175 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0157 -0.1664 -0.0635 -0.1645 -0.1176 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 175"
[1] "ENDing cell.. 175 With feature... nProtrusions"
[1] "STARTing cell.. 234 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.07096 -0.06382 -0.00482 0.01323 0.00903 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 234"
[1] "ENDing cell.. 234 With feature... nProtrusions"
[1] "STARTing cell.. 192 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0316 -0.2108 -0.113 -0.2214 -0.1466 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 192"
[1] "ENDing cell.. 192 With feature... nProtrusions"
[1] "STARTing cell.. 240 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 240"
[1] "ENDing cell.. 240 With feature... nProtrusions"
[1] "STARTing cell.. 80 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.00315 0.05277 0.00105 0.07694 0.05074 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 80"
[1] "ENDing cell.. 80 With feature... nProtrusions"
[1] "STARTing cell.. 97 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.096 -0.0552 -0.1063 0.2442 -0.192 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 97"
[1] "ENDing cell.. 97 With feature... nProtrusions"
[1] "STARTing cell.. 207 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.00651 -0.06081 0.10132 0.08045 -0.04738 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 207"
[1] "ENDing cell.. 207 With feature... nProtrusions"
[1] "STARTing cell.. 277 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.01366 0.20038 0.00911 0.00911 0.2006 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 277"
[1] "ENDing cell.. 277 With feature... nProtrusions"
[1] "STARTing cell.. 73 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0105 0.0507 -0.1024 0.108 -0.2987 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 73"
[1] "ENDing cell.. 73 With feature... nProtrusions"
[1] "STARTing cell.. 139 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0188 -0.2167 -0.0696 -0.0738 0.1713 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 139"
[1] "ENDing cell.. 139 With feature... nProtrusions"
[1] "STARTing cell.. 258 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0494 0.0807 0.117 0.1579 0.1667 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 258"
[1] "ENDing cell.. 258 With feature... nProtrusions"
[1] "STARTing cell.. 179 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0588 0.134 0.0321 0.2276 -0.2957 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 179"
[1] "ENDing cell.. 179 With feature... nProtrusions"
[1] "STARTing cell.. 167 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.00471 0.03421 -0.09619 0.15462 0.19354 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 167"
[1] "ENDing cell.. 167 With feature... nProtrusions"
[1] "STARTing cell.. 252 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.14142 0.17735 -0.04157 -0.00359 0.07886 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 252"
[1] "ENDing cell.. 252 With feature... nProtrusions"
[1] "STARTing cell.. 81 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.1954 0.1284 -0.1911 -0.0214 -0.0193 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 81"
[1] "ENDing cell.. 81 With feature... nProtrusions"
[1] "STARTing cell.. 14 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.09949 -0.00714 -0.00924 0.00981 -0.01799 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 14"
[1] "ENDing cell.. 14 With feature... nProtrusions"
[1] "STARTing cell.. 199 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.1573 0.274 0.1126 -0.0487 0.0399 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 199"
[1] "ENDing cell.. 199 With feature... nProtrusions"
[1] "STARTing cell.. 266 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.15053 -0.05731 -0.03717 -0.0366 0.00927 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 266"
[1] "ENDing cell.. 266 With feature... nProtrusions"
[1] "STARTing cell.. 116 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.119728 -0.000369 -0.157288 -0.067011 0.199141 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 116"
[1] "ENDing cell.. 116 With feature... nProtrusions"
[1] "STARTing cell.. 176 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0648 0.0132 -0.1582 -0.1083 -0.0632 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 176"
[1] "ENDing cell.. 176 With feature... nProtrusions"
[1] "STARTing cell.. 235 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.00972 0.03893 -0.17693 0.1259 -0.02916 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 235"
[1] "ENDing cell.. 235 With feature... nProtrusions"
[1] "STARTing cell.. 38 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0832 -0.0761 -0.1981 0.078 -0.3088 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 38"
[1] "ENDing cell.. 38 With feature... nProtrusions"
[1] "STARTing cell.. 105 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0938 0.0953 0.1133 0.0429 0.1327 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 105"
[1] "ENDing cell.. 105 With feature... nProtrusions"
[1] "STARTing cell.. 193 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0515 0.1743 0.2491 0.106 0.1784 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 193"
[1] "ENDing cell.. 193 With feature... nProtrusions"
[1] "STARTing cell.. 181 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0694 -0.039 0.1213 -0.1101 -0.0525 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 181"
[1] "ENDing cell.. 181 With feature... nProtrusions"
[1] "STARTing cell.. 28 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.204 -0.257 -0.115 -0.169 -0.139 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 28"
[1] "ENDing cell.. 28 With feature... nProtrusions"
[1] "STARTing cell.. 98 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.1797 -0.1827 0.1512 -0.1735 -0.0195 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 98"
[1] "ENDing cell.. 98 With feature... nProtrusions"
[1] "STARTing cell.. 200 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.02494 -0.03362 0.00651 -0.05097 -0.03796 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 200"
[1] "ENDing cell.. 200 With feature... nProtrusions"
[1] "STARTing cell.. 209 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0917 -0.2196 -0.1475 0.2779 0.1593 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 209"
[1] "ENDing cell.. 209 With feature... nProtrusions"
[1] "STARTing cell.. 278 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.11165 0.08743 -0.00316 0.30441 0.46613 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 278"
[1] "ENDing cell.. 278 With feature... nProtrusions"
[1] "STARTing cell.. 75 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.11522 0.16766 0.11005 -0.05609 -0.00669 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 75"
[1] "ENDing cell.. 75 With feature... nProtrusions"
[1] "STARTing cell.. 141 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.1496 -0.1064 -0.0989 -0.1661 -0.1716 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 141"
[1] "ENDing cell.. 141 With feature... nProtrusions"
[1] "STARTing cell.. 259 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 259"
[1] "ENDing cell.. 259 With feature... nProtrusions"
[1] "STARTing cell.. 16 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.1447 -0.0293 -0.0323 0.0374 -0.0791 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 16"
[1] "ENDing cell.. 16 With feature... nProtrusions"
[1] "STARTing cell.. 267 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0819 0.1065 0.0821 0.1414 0.2989 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 267"
[1] "ENDing cell.. 267 With feature... nProtrusions"
[1] "STARTing cell.. 201 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.152 0.0337 0.3667 -0.083 0.0475 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 201"
[1] "ENDing cell.. 201 With feature... nProtrusions"
[1] "STARTing cell.. 117 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.186 -0.0803 -0.2384 -0.1397 -0.0899 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 117"
[1] "ENDing cell.. 117 With feature... nProtrusions"
[1] "STARTing cell.. 177 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0341 0.2056 0.158 -0.0575 0.1339 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 177"
[1] "ENDing cell.. 177 With feature... nProtrusions"
[1] "STARTing cell.. 15 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.00865 -0.07591 -0.10986 -0.18079 -0.28092 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 15"
[1] "ENDing cell.. 15 With feature... nProtrusions"
[1] "STARTing cell.. 106 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.1005 0.0976 0.1942 -0.11 -0.0482 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 106"
[1] "ENDing cell.. 106 With feature... nProtrusions"
[1] "STARTing cell.. 194 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.1297 -0.2893 -0.0441 0.1629 0.1731 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 194"
[1] "ENDing cell.. 194 With feature... nProtrusions"
[1] "STARTing cell.. 31 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.1758 0.1961 0.0628 -0.089 0.0638 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 31"
[1] "ENDing cell.. 31 With feature... nProtrusions"
[1] "STARTing cell.. 77 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.1226 -0.3219 0.0966 0.0223 -0.1947 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 77"
[1] "ENDing cell.. 77 With feature... nProtrusions"
[1] "STARTing cell.. 91 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.1927 -0.0553 -0.0283 0.1458 0.0294 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 91"
[1] "ENDing cell.. 91 With feature... nProtrusions"
[1] "STARTing cell.. 142 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.098 0.0967 0.0295 -0.2054 -0.2222 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 142"
[1] "ENDing cell.. 142 With feature... nProtrusions"
[1] "STARTing cell.. 17 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0826 -0.1183 0.1242 0.0849 0.0711 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 17"
[1] "ENDing cell.. 17 With feature... nProtrusions"
[1] "STARTing cell.. 62 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.00801 0.12934 0.29112 -0.10912 -0.11065 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 62"
[1] "ENDing cell.. 62 With feature... nProtrusions"
[1] "STARTing cell.. 168 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.3991 -0.147 -0.2184 -0.2307 -0.0659 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 168"
[1] "ENDing cell.. 168 With feature... nProtrusions"
[1] "STARTing cell.. 127 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0221 -0.11 0.0786 0.0903 0.1659 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 127"
[1] "ENDing cell.. 127 With feature... nProtrusions"
[1] "STARTing cell.. 253 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.05701 0.01615 0.00728 -0.03905 -0.11737 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 253"
[1] "ENDing cell.. 253 With feature... nProtrusions"
[1] "STARTing cell.. 118 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.1794 -0.14 -0.0991 -0.0397 -0.2253 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 118"
[1] "ENDing cell.. 118 With feature... nProtrusions"
[1] "STARTing cell.. 39 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0644 0.2286 0.0824 0.086 0.0146 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 39"
[1] "ENDing cell.. 39 With feature... nProtrusions"
[1] "STARTing cell.. 107 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0492 -0.0392 -0.0832 0.0482 0.0275 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 107"
[1] "ENDing cell.. 107 With feature... nProtrusions"
[1] "STARTing cell.. 196 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.1571 0.0382 0.0786 -0.1041 -0.0674 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 196"
[1] "ENDing cell.. 196 With feature... nProtrusions"
[1] "STARTing cell.. 212 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0135 -0.0916 -0.064 -0.0179 -0.0485 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 212"
[1] "ENDing cell.. 212 With feature... nProtrusions"
[1] "STARTing cell.. 79 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0643 0.0497 0.0783 -0.1635 0.0394 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 79"
[1] "ENDing cell.. 79 With feature... nProtrusions"
[1] "STARTing cell.. 143 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0158 -0.005 0.0145 0.0211 -0.0344 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 143"
[1] "ENDing cell.. 143 With feature... nProtrusions"
[1] "STARTing cell.. 92 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.149 0.014 0.132 0.164 -0.116 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 92"
[1] "ENDing cell.. 92 With feature... nProtrusions"
[1] "STARTing cell.. 169 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0947 0.0483 -0.0506 -0.2343 -0.1902 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 169"
[1] "ENDing cell.. 169 With feature... nProtrusions"
[1] "STARTing cell.. 254 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 254"
[1] "ENDing cell.. 254 With feature... nProtrusions"
[1] "STARTing cell.. 269 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.23367 0.00359 -0.04549 0.00982 -0.15778 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 269"
[1] "ENDing cell.. 269 With feature... nProtrusions"
[1] "STARTing cell.. 119 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.1381 -0.1077 -0.0357 -0.1364 0.0163 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 119"
[1] "ENDing cell.. 119 With feature... nProtrusions"
[1] "STARTing cell.. 180 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0473 -0.0399 0.0552 -0.1035 -0.1166 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 180"
[1] "ENDing cell.. 180 With feature... nProtrusions"
[1] "STARTing cell.. 151 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.1456 -0.0969 0.0231 -0.2159 0.0266 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 151"
[1] "ENDing cell.. 151 With feature... nProtrusions"
[1] "STARTing cell.. 40 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.022 -0.0219 -0.0141 -0.0682 -0.1222 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 40"
[1] "ENDing cell.. 40 With feature... nProtrusions"
[1] "STARTing cell.. 191 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.01242 0.00843 -0.04582 -0.0038 0.17536 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 191"
[1] "ENDing cell.. 191 With feature... nProtrusions"
[1] "STARTing cell.. 108 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0847 0.2104 0.1648 0.045 0.0512 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 108"
[1] "ENDing cell.. 108 With feature... nProtrusions"
[1] "STARTing cell.. 198 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0586 -0.0127 0.1739 -0.0264 -0.0535 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 198"
[1] "ENDing cell.. 198 With feature... nProtrusions"
[1] "STARTing cell.. 144 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.00647 -0.07176 0.08747 -0.22475 0.08701 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 144"
[1] "ENDing cell.. 144 With feature... nProtrusions"
[1] "STARTing cell.. 170 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 170"
[1] "ENDing cell.. 170 With feature... nProtrusions"
[1] "STARTing cell.. 270 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.02617 0.00109 -0.11031 0.01908 -0.07869 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 270"
[1] "ENDing cell.. 270 With feature... nProtrusions"
[1] "STARTing cell.. 41 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.00707 -0.01575 0.13153 -0.01119 0.06801 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 41"
[1] "ENDing cell.. 41 With feature... nProtrusions"
[1] "STARTing cell.. 154 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0499 -0.038 0.0838 0.0957 0.0846 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 154"
[1] "ENDing cell.. 154 With feature... nProtrusions"
[1] "STARTing cell.. 90 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.14644 0.025533 -0.000326 0.055602 0.040229 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 90"
[1] "ENDing cell.. 90 With feature... nProtrusions"
[1] "STARTing cell.. 145 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0598 0.205 0.1204 0.0211 0.2298 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 145"
[1] "ENDing cell.. 145 With feature... nProtrusions"
[1] "STARTing cell.. 271 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0662 0.2128 -0.0846 -0.178 0.2513 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 271"
[1] "ENDing cell.. 271 With feature... nProtrusions"
[1] "STARTing cell.. 183 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.00269 0.02483 -0.00283 0.06516 0.00567 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 183"
[1] "ENDing cell.. 183 With feature... nProtrusions"
[1] "STARTing cell.. 147 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0532 -0.0523 -0.0172 0.0357 -0.0183 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 147"
[1] "ENDing cell.. 147 With feature... nProtrusions"
[1] "STARTing cell.. 178 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0338 -0.2254 -0.0991 -0.0758 -0.0567 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 178"
[1] "ENDing cell.. 178 With feature... nProtrusions"
[1] "STARTing cell.. 272 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0476 -0.0108 -0.0133 0.0478 0.2331 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 272"
[1] "ENDing cell.. 272 With feature... nProtrusions"
[1] "STARTing cell.. 43 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.123 0.257 0.165 0.226 0.293 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 43"
[1] "ENDing cell.. 43 With feature... nProtrusions"
[1] "STARTing cell.. 99 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.02672 -0.00802 -0.06357 -0.16193 -0.17978 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 99"
[1] "ENDing cell.. 99 With feature... nProtrusions"
[1] "STARTing cell.. 155 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.181 -0.0758 -0.2312 -0.1101 0.011 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 155"
[1] "ENDing cell.. 155 With feature... nProtrusions"
[1] "STARTing cell.. 148 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.076 0.0161 0.0911 0.0039 -0.0241 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 148"
[1] "ENDing cell.. 148 With feature... nProtrusions"
[1] "STARTing cell.. 215 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.11471 0.1124 0.07596 0.00975 0.06698 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 215"
[1] "ENDing cell.. 215 With feature... nProtrusions"
[1] "STARTing cell.. 149 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.102 -0.046 -0.274 -0.215 -0.101 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 149"
[1] "ENDing cell.. 149 With feature... nProtrusions"
[1] "STARTing cell.. 89 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.075 0.0634 0.1405 0.0352 0.1759 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 89"
[1] "ENDing cell.. 89 With feature... nProtrusions"
[1] "STARTing cell.. 156 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.17676 0.09765 0.00151 0.24602 -0.02044 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 156"
[1] "ENDing cell.. 156 With feature... nProtrusions"
[1] "STARTing cell.. 150 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 150"
[1] "ENDing cell.. 150 With feature... nProtrusions"
[1] "STARTing cell.. 42 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.2145 0.1483 0.1702 0.2297 -0.0799 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 42"
[1] "ENDing cell.. 42 With feature... nProtrusions"
[1] "STARTing cell.. 44 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.099 0.0865 0.0773 -0.2174 0.1244 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 44"
[1] "ENDing cell.. 44 With feature... nProtrusions"
[1] "STARTing cell.. 100 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.2448 -0.0277 -0.1883 -0.0132 -0.0504 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 100"
[1] "ENDing cell.. 100 With feature... nProtrusions"
[1] "STARTing cell.. 153 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0637 0.1675 0.1305 0.0999 -0.0522 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 153"
[1] "ENDing cell.. 153 With feature... nProtrusions"
[1] "STARTing cell.. 47 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0115 -0.1301 0.0578 0.2735 0.0827 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 47"
[1] "ENDing cell.. 47 With feature... nProtrusions"
[1] "STARTing cell.. 202 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0407 0.00363 -0.06606 0.20839 0.19351 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 202"
[1] "ENDing cell.. 202 With feature... nProtrusions"
[1] "STARTing cell.. 51 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.01428 0.01368 0.1168 -0.00696 0.02809 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 51"
[1] "ENDing cell.. 51 With feature... nProtrusions"
[1] "STARTing cell.. 260 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 260"
[1] "ENDing cell.. 260 With feature... nProtrusions"
[1] "STARTing cell.. 217 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.1555 0.1526 0.1352 0.2027 0.0568 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 217"
[1] "ENDing cell.. 217 With feature... nProtrusions"
[1] "STARTing cell.. 182 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.05902 0.18079 -0.06388 0.06755 -0.00153 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 182"
[1] "ENDing cell.. 182 With feature... nProtrusions"
[1] "STARTing cell.. 184 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.1987 -0.0281 0.0524 -0.116 -0.1896 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 184"
[1] "ENDing cell.. 184 With feature... nProtrusions"
[1] "STARTing cell.. 45 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.134 0.011 0.209 -0.121 0.243 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 45"
[1] "ENDing cell.. 45 With feature... nProtrusions"
[1] "STARTing cell.. 241 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.14481 0.21225 -0.04118 -0.06341 0.00482 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 241"
[1] "ENDing cell.. 241 With feature... nProtrusions"
[1] "STARTing cell.. 82 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.2602 -0.0814 -0.1089 -0.1067 0.0868 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 82"
[1] "ENDing cell.. 82 With feature... nProtrusions"
[1] "STARTing cell.. 261 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.01703 -0.00962 -0.06287 -0.15677 -0.06146 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 261"
[1] "ENDing cell.. 261 With feature... nProtrusions"
[1] "STARTing cell.. 262 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.04843 -0.06016 0.10038 0.00213 0.09277 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 262"
[1] "ENDing cell.. 262 With feature... nProtrusions"
[1] "STARTing cell.. 216 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0972 0.2205 0.0932 0.0867 0.183 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 216"
[1] "ENDing cell.. 216 With feature... nProtrusions"
[1] "STARTing cell.. 66 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0543 -0.1569 0.0414 -0.0357 -0.0911 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 66"
[1] "ENDing cell.. 66 With feature... nProtrusions"
[1] "STARTing cell.. 128 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0939 0.1748 0.1374 0.0329 0.0627 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 128"
[1] "ENDing cell.. 128 With feature... nProtrusions"
[1] "STARTing cell.. 50 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.203183 -0.008063 -0.15992 -0.000812 -0.110369 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 50"
[1] "ENDing cell.. 50 With feature... nProtrusions"
[1] "STARTing cell.. 5 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.061 0.0142 0.0585 0.0119 -0.1318 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 5"
[1] "ENDing cell.. 5 With feature... nProtrusions"
[1] "STARTing cell.. 26 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0203 0.1305 0.0796 -0.0873 -0.0456 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 26"
[1] "ENDing cell.. 26 With feature... nProtrusions"
[1] "STARTing cell.. 129 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.07836 -0.05568 -0.00825 -0.13404 -0.08661 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 129"
[1] "ENDing cell.. 129 With feature... nProtrusions"
[1] "STARTing cell.. 67 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.000944 -0.002832 0.069023 0.009779 -0.146881 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 67"
[1] "ENDing cell.. 67 With feature... nProtrusions"
[1] "STARTing cell.. 247 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0729 -0.0587 -0.0142 0.0596 0.1334 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 247"
[1] "ENDing cell.. 247 With feature... nProtrusions"
[1] "STARTing cell.. 134 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.144 -0.112 0.144 0.02 0.217 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 134"
[1] "ENDing cell.. 134 With feature... nProtrusions"
[1] "STARTing cell.. 93 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.1124 -0.1669 -0.2053 0.0967 -0.0275 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 93"
[1] "ENDing cell.. 93 With feature... nProtrusions"
[1] "STARTing cell.. 248 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.13803 -0.00746 0.02984 -0.00695 -0.02324 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 248"
[1] "ENDing cell.. 248 With feature... nProtrusions"
[1] "STARTing cell.. 157 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.09189 0.25456 0.01702 0.01332 0.00961 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 157"
[1] "ENDing cell.. 157 With feature... nProtrusions"
[1] "STARTing cell.. 46 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0174 0.0584 0.1463 0.16 0.2114 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 46"
[1] "ENDing cell.. 46 With feature... nProtrusions"
[1] "STARTing cell.. 242 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0294 -0.0493 -0.2765 -0.1001 0.0208 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 242"
[1] "ENDing cell.. 242 With feature... nProtrusions"
[1] "STARTing cell.. 159 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0905 -0.2336 -0.1017 -0.0101 0.0704 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 159"
[1] "ENDing cell.. 159 With feature... nProtrusions"
[1] "STARTing cell.. 186 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.07812 -0.00458 -0.0255 -0.1419 0.02535 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 186"
[1] "ENDing cell.. 186 With feature... nProtrusions"
[1] "STARTing cell.. 228 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.00266 0.01691 -0.22068 -0.1664 0.05512 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 228"
[1] "ENDing cell.. 228 With feature... nProtrusions"
[1] "STARTing cell.. 160 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.030387 -0.077096 0.126236 -0.000174 -0.037506 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 160"
[1] "ENDing cell.. 160 With feature... nProtrusions"
[1] "STARTing cell.. 279 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0426 -0.0447 -0.0446 -0.0629 0.0223 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 279"
[1] "ENDing cell.. 279 With feature... nProtrusions"
[1] "STARTing cell.. 53 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0298 -0.2107 0.2129 0.2042 0.0614 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 53"
[1] "ENDing cell.. 53 With feature... nProtrusions"
[1] "STARTing cell.. 94 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.158539 -0.072688 -0.000564 0.056201 0.147252 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 94"
[1] "ENDing cell.. 94 With feature... nProtrusions"
[1] "STARTing cell.. 121 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0729 -0.103 -0.088 -0.3368 0.0151 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 121"
[1] "ENDing cell.. 121 With feature... nProtrusions"
[1] "STARTing cell.. 213 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0157 -0.1348 0.0584 0.113 0.1913 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 213"
[1] "ENDing cell.. 213 With feature... nProtrusions"
[1] "STARTing cell.. 109 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0956 -0.1263 0.1026 -0.092 -0.179 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 109"
[1] "ENDing cell.. 109 With feature... nProtrusions"
[1] "STARTing cell.. 110 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.18379 -0.09093 -0.10297 -0.16302 -0.00503 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 110"
[1] "ENDing cell.. 110 With feature... nProtrusions"
[1] "STARTing cell.. 101 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0451 -0.3396 -0.1562 -0.0847 -0.2064 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 101"
[1] "ENDing cell.. 101 With feature... nProtrusions"
[1] "STARTing cell.. 187 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0623 -0.2359 -0.1628 -0.0292 -0.0164 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 187"
[1] "ENDing cell.. 187 With feature... nProtrusions"
[1] "STARTing cell.. 263 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.1297 0.1738 0.211 -0.0998 -0.1182 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 263"
[1] "ENDing cell.. 263 With feature... nProtrusions"
[1] "STARTing cell.. 218 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] 0.0523 -0.2078 -0.0613 -0.2611 -0.1369 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 218"
[1] "ENDing cell.. 218 With feature... nProtrusions"
[1] "STARTing cell.. 19 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.1712 -0.3554 -0.0912 -0.1368 -0.1049 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 19"
[1] "ENDing cell.. 19 With feature... nProtrusions"
[1] "STARTing cell.. 20 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.00687 -0.07488 -0.09793 0.03842 0.1993 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 20"
[1] "ENDing cell.. 20 With feature... nProtrusions"
[1] "STARTing cell.. 224 With feature... nProtrusions"
List of 6
$ acf : num [1:27, 1, 1] -0.0779 0.0819 -0.0101 -0.0988 0.197 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 224"
[1] "ENDing cell.. 224 With feature... nProtrusions"
[1] "STARTing cell.. 219 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.1445 0.1296 0.0216 0.0519 0.1259 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 219"
[1] "ENDing cell.. 219 With feature... Polarity"
[1] "STARTing cell.. 264 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.103 -0.0598 0.1441 -0.0353 -0.0674 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 264"
[1] "ENDing cell.. 264 With feature... Polarity"
[1] "STARTing cell.. 136 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.25536 -0.1819 -0.11579 -0.00475 0.05469 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 136"
[1] "ENDing cell.. 136 With feature... Polarity"
[1] "STARTing cell.. 54 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.527 -0.47 -0.368 -0.251 -0.104 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 54"
[1] "ENDing cell.. 54 With feature... Polarity"
[1] "STARTing cell.. 69 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.1351 -0.2045 -0.1448 -0.1414 -0.0315 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 69"
[1] "ENDing cell.. 69 With feature... Polarity"
[1] "STARTing cell.. 111 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.232 -0.231 -0.271 -0.292 -0.212 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 111"
[1] "ENDing cell.. 111 With feature... Polarity"
[1] "STARTing cell.. 189 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.226 0.269 0.307 0.328 0.352 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 189"
[1] "ENDing cell.. 189 With feature... Polarity"
[1] "STARTing cell.. 171 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.302184 -0.22652 -0.216528 -0.06334 0.000584 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 171"
[1] "ENDing cell.. 171 With feature... Polarity"
[1] "STARTing cell.. 231 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0835 0.0256 0.0685 0.199 0.091 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 231"
[1] "ENDing cell.. 231 With feature... Polarity"
[1] "STARTing cell.. 205 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.043 -0.0379 -0.0615 -0.018 0.1122 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 205"
[1] "ENDing cell.. 205 With feature... Polarity"
[1] "STARTing cell.. 244 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.266 -0.333 -0.434 -0.529 -0.521 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 244"
[1] "ENDing cell.. 244 With feature... Polarity"
[1] "STARTing cell.. 1 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.05 -0.0521 -0.106 -0.1608 -0.1564 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 1"
[1] "ENDing cell.. 1 With feature... Polarity"
[1] "STARTing cell.. 36 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.1071 0.0628 0.0757 0.1071 0.0907 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 36"
[1] "ENDing cell.. 36 With feature... Polarity"
[1] "STARTing cell.. 7 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.203 -0.214 -0.217 -0.167 -0.142 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 7"
[1] "ENDing cell.. 7 With feature... Polarity"
[1] "STARTing cell.. 102 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.151 0.236 0.189 0.226 0.252 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 102"
[1] "ENDing cell.. 102 With feature... Polarity"
[1] "STARTing cell.. 22 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0129 0.0713 0.1516 0.2812 0.3395 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 22"
[1] "ENDing cell.. 22 With feature... Polarity"
[1] "STARTing cell.. 188 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.187 0.185 0.169 0.152 0.139 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 188"
[1] "ENDing cell.. 188 With feature... Polarity"
[1] "STARTing cell.. 55 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.0211 0.0455 0.1088 0.1614 0.2221 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 55"
[1] "ENDing cell.. 55 With feature... Polarity"
[1] "STARTing cell.. 243 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.06921 -0.04445 -0.00396 0.05883 0.099 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 243"
[1] "ENDing cell.. 243 With feature... Polarity"
[1] "STARTing cell.. 123 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0971 -0.016 -0.3148 -0.326 -0.1975 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 123"
[1] "ENDing cell.. 123 With feature... Polarity"
[1] "STARTing cell.. 21 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.41 -0.353 -0.317 -0.246 -0.17 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 21"
[1] "ENDing cell.. 21 With feature... Polarity"
[1] "STARTing cell.. 163 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.0464 0.2217 0.1434 0.1081 0.0745 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 163"
[1] "ENDing cell.. 163 With feature... Polarity"
[1] "STARTing cell.. 112 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0465 0.0554 0.1956 0.2144 0.2202 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 112"
[1] "ENDing cell.. 112 With feature... Polarity"
[1] "STARTing cell.. 33 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.364 -0.433 -0.441 -0.488 -0.515 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 33"
[1] "ENDing cell.. 33 With feature... Polarity"
[1] "STARTing cell.. 172 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.211 0.251 0.358 0.324 0.281 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 172"
[1] "ENDing cell.. 172 With feature... Polarity"
[1] "STARTing cell.. 95 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.1367 -0.0796 -0.0162 0.0407 0.1199 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 95"
[1] "ENDing cell.. 95 With feature... Polarity"
[1] "STARTing cell.. 30 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.1941 -0.2023 -0.1733 0.0474 0.2055 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 30"
[1] "ENDing cell.. 30 With feature... Polarity"
[1] "STARTing cell.. 203 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.01318 0.01833 0.00565 0.13528 0.13599 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 203"
[1] "ENDing cell.. 203 With feature... Polarity"
[1] "STARTing cell.. 274 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.0227 0.0722 0.0711 0.1066 0.1376 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 274"
[1] "ENDing cell.. 274 With feature... Polarity"
[1] "STARTing cell.. 131 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.0056 0.18989 -0.00944 0.18274 0.18906 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 131"
[1] "ENDing cell.. 131 With feature... Polarity"
[1] "STARTing cell.. 68 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.07252 -0.02304 -0.00771 -0.00793 -0.02031 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 68"
[1] "ENDing cell.. 68 With feature... Polarity"
[1] "STARTing cell.. 71 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.2486 0.2053 0.1681 0.1515 0.0393 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 71"
[1] "ENDing cell.. 71 With feature... Polarity"
[1] "STARTing cell.. 135 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.1375 0.1033 -0.0462 -0.1861 -0.234 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 135"
[1] "ENDing cell.. 135 With feature... Polarity"
[1] "STARTing cell.. 84 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.08229 0.12411 0.03809 0.0074 -0.00793 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 84"
[1] "ENDing cell.. 84 With feature... Polarity"
[1] "STARTing cell.. 206 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.519 0.534 0.478 0.493 0.488 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 206"
[1] "ENDing cell.. 206 With feature... Polarity"
[1] "STARTing cell.. 255 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.335 0.336 0.36 0.329 0.396 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 255"
[1] "ENDing cell.. 255 With feature... Polarity"
[1] "STARTing cell.. 64 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.1577 0.0991 0.2652 0.317 0.1361 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 64"
[1] "ENDing cell.. 64 With feature... Polarity"
[1] "STARTing cell.. 9 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0172 -0.0471 0.0341 -0.0991 0.0233 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 9"
[1] "ENDing cell.. 9 With feature... Polarity"
[1] "STARTing cell.. 122 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.56 -0.516 -0.433 -0.296 -0.131 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 122"
[1] "ENDing cell.. 122 With feature... Polarity"
[1] "STARTing cell.. 23 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.04735 0.04196 -0.011 0.00815 -0.09132 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 23"
[1] "ENDing cell.. 23 With feature... Polarity"
[1] "STARTing cell.. 162 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.2379 -0.1243 -0.0318 0.0753 0.1603 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 162"
[1] "ENDing cell.. 162 With feature... Polarity"
[1] "STARTing cell.. 229 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.267 -0.359 -0.337 -0.334 -0.352 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 229"
[1] "ENDing cell.. 229 With feature... Polarity"
[1] "STARTing cell.. 57 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0864 -0.2953 -0.3043 -0.2631 -0.2775 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 57"
[1] "ENDing cell.. 57 With feature... Polarity"
[1] "STARTing cell.. 249 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.197 0.008 0.182 0.317 0.405 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 249"
[1] "ENDing cell.. 249 With feature... Polarity"
[1] "STARTing cell.. 125 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.0906 0.045 0.0586 0.0282 0.1213 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 125"
[1] "ENDing cell.. 125 With feature... Polarity"
[1] "STARTing cell.. 8 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.302 -0.259 -0.285 -0.308 -0.287 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 8"
[1] "ENDing cell.. 8 With feature... Polarity"
[1] "STARTing cell.. 165 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.2377 0.1592 0.1534 0.1278 0.0263 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 165"
[1] "ENDing cell.. 165 With feature... Polarity"
[1] "STARTing cell.. 83 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.1174 -0.0442 -0.0883 -0.1384 -0.156 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 83"
[1] "ENDing cell.. 83 With feature... Polarity"
[1] "STARTing cell.. 113 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0929 -0.0757 -0.2305 -0.2097 -0.0792 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 113"
[1] "ENDing cell.. 113 With feature... Polarity"
[1] "STARTing cell.. 220 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.1531 -0.0786 -0.1429 -0.1293 -0.0571 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 220"
[1] "ENDing cell.. 220 With feature... Polarity"
[1] "STARTing cell.. 174 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.0289 0.1148 0.1829 0.3019 0.3181 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 174"
[1] "ENDing cell.. 174 With feature... Polarity"
[1] "STARTing cell.. 56 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.375 0.395 0.434 0.511 0.561 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 56"
[1] "ENDing cell.. 56 With feature... Polarity"
[1] "STARTing cell.. 173 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.2662 -0.1761 -0.1735 -0.0705 0.0209 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 173"
[1] "ENDing cell.. 173 With feature... Polarity"
[1] "STARTing cell.. 232 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.122 -0.115 0.025 0.076 0.15 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 232"
[1] "ENDing cell.. 232 With feature... Polarity"
[1] "STARTing cell.. 37 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.06495 -0.03336 0.01243 -0.02717 0.00728 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 37"
[1] "ENDing cell.. 37 With feature... Polarity"
[1] "STARTing cell.. 86 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.166 0.191 0.235 0.313 0.317 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 86"
[1] "ENDing cell.. 86 With feature... Polarity"
[1] "STARTing cell.. 103 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0666 -0.0442 -0.0168 0.0118 0.0413 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 103"
[1] "ENDing cell.. 103 With feature... Polarity"
[1] "STARTing cell.. 208 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.3373 -0.2637 -0.2078 -0.1776 -0.0773 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 208"
[1] "ENDing cell.. 208 With feature... Polarity"
[1] "STARTing cell.. 190 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.1 0.145 0.272 0.281 0.374 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 190"
[1] "ENDing cell.. 190 With feature... Polarity"
[1] "STARTing cell.. 4 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.1011 -0.0704 0.0301 0.0889 0.1925 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 4"
[1] "ENDing cell.. 4 With feature... Polarity"
[1] "STARTing cell.. 238 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.187 0.218 0.237 0.272 0.241 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 238"
[1] "ENDing cell.. 238 With feature... Polarity"
[1] "STARTing cell.. 11 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.123 -0.114 -0.153 -0.103 -0.129 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 11"
[1] "ENDing cell.. 11 With feature... Polarity"
[1] "STARTing cell.. 29 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.319 -0.414 -0.427 -0.404 -0.386 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 29"
[1] "ENDing cell.. 29 With feature... Polarity"
[1] "STARTing cell.. 59 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.1806 0.4418 0.1752 0.0605 0.0189 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 59"
[1] "ENDing cell.. 59 With feature... Polarity"
[1] "STARTing cell.. 96 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.16959 0.14968 0.08419 0.00943 -0.04963 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 96"
[1] "ENDing cell.. 96 With feature... Polarity"
[1] "STARTing cell.. 204 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.2781 0.2405 0.1809 0.1281 0.0153 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 204"
[1] "ENDing cell.. 204 With feature... Polarity"
[1] "STARTing cell.. 275 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.455 -0.457 -0.377 -0.295 -0.165 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 275"
[1] "ENDing cell.. 275 With feature... Polarity"
[1] "STARTing cell.. 130 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.388 0.354 0.37 0.519 0.438 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 130"
[1] "ENDing cell.. 130 With feature... Polarity"
[1] "STARTing cell.. 137 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.0509 0.0897 0.1509 0.1857 0.0582 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 137"
[1] "ENDing cell.. 137 With feature... Polarity"
[1] "STARTing cell.. 140 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.1736 -0.0859 0.0264 0.143 0.2053 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 140"
[1] "ENDing cell.. 140 With feature... Polarity"
[1] "STARTing cell.. 226 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.567 0.629 0.643 0.585 0.451 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 226"
[1] "ENDing cell.. 226 With feature... Polarity"
[1] "STARTing cell.. 74 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.543 -0.365 -0.389 -0.259 -0.175 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 74"
[1] "ENDing cell.. 74 With feature... Polarity"
[1] "STARTing cell.. 256 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.27 -0.224 -0.149 -0.146 -0.125 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 256"
[1] "ENDing cell.. 256 With feature... Polarity"
[1] "STARTing cell.. 65 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0681 -0.0127 -0.0154 -0.0249 0.1699 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 65"
[1] "ENDing cell.. 65 With feature... Polarity"
[1] "STARTing cell.. 87 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.0151 0.1066 0.0624 0.0305 0.1108 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 87"
[1] "ENDing cell.. 87 With feature... Polarity"
[1] "STARTing cell.. 124 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.186 -0.165 -0.178 -0.149 -0.126 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 124"
[1] "ENDing cell.. 124 With feature... Polarity"
[1] "STARTing cell.. 210 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.36 -0.165 -0.213 -0.254 -0.208 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 210"
[1] "ENDing cell.. 210 With feature... Polarity"
[1] "STARTing cell.. 164 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.1029 -0.0871 -0.0214 -0.1113 0.0138 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 164"
[1] "ENDing cell.. 164 With feature... Polarity"
[1] "STARTing cell.. 230 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.2154 0.1891 0.1444 0.1352 0.0455 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 230"
[1] "ENDing cell.. 230 With feature... Polarity"
[1] "STARTing cell.. 13 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.02973 0.01105 0.0161 0.00311 0.03843 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 13"
[1] "ENDing cell.. 13 With feature... Polarity"
[1] "STARTing cell.. 250 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.1482 -0.1231 -0.1597 -0.0981 -0.1225 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 250"
[1] "ENDing cell.. 250 With feature... Polarity"
[1] "STARTing cell.. 10 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.125 0.183 0.257 0.365 0.387 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 10"
[1] "ENDing cell.. 10 With feature... Polarity"
[1] "STARTing cell.. 85 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.00579 -0.05484 -0.20114 -0.10474 -0.19966 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 85"
[1] "ENDing cell.. 85 With feature... Polarity"
[1] "STARTing cell.. 61 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.359 0.376 0.291 0.232 0.153 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 61"
[1] "ENDing cell.. 61 With feature... Polarity"
[1] "STARTing cell.. 221 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.362 -0.363 -0.403 -0.439 -0.355 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 221"
[1] "ENDing cell.. 221 With feature... Polarity"
[1] "STARTing cell.. 265 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.1576 0.0812 0.1025 0.1556 0.132 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 265"
[1] "ENDing cell.. 265 With feature... Polarity"
[1] "STARTing cell.. 58 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.316 -0.419 -0.487 -0.392 -0.399 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 58"
[1] "ENDing cell.. 58 With feature... Polarity"
[1] "STARTing cell.. 114 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.1447 0.0916 -0.1195 0.0247 0.0709 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 114"
[1] "ENDing cell.. 114 With feature... Polarity"
[1] "STARTing cell.. 233 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.0387 0.1384 0.2405 0.3355 0.4116 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 233"
[1] "ENDing cell.. 233 With feature... Polarity"
[1] "STARTing cell.. 246 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.00458 -0.0244 0.1185 0.33063 0.18755 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 246"
[1] "ENDing cell.. 246 With feature... Polarity"
[1] "STARTing cell.. 104 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.208 -0.253 -0.258 -0.262 -0.254 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 104"
[1] "ENDing cell.. 104 With feature... Polarity"
[1] "STARTing cell.. 76 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.384 0.456 0.48 0.505 0.507 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 76"
[1] "ENDing cell.. 76 With feature... Polarity"
[1] "STARTing cell.. 239 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0484 -0.1041 -0.1364 -0.1636 -0.0192 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 239"
[1] "ENDing cell.. 239 With feature... Polarity"
[1] "STARTing cell.. 88 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.1454 -0.0521 -0.0658 -0.1243 -0.0496 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 88"
[1] "ENDing cell.. 88 With feature... Polarity"
[1] "STARTing cell.. 211 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.1203 -0.063 -0.0031 0.0916 0.171 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 211"
[1] "ENDing cell.. 211 With feature... Polarity"
[1] "STARTing cell.. 24 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0465 -0.1294 -0.1593 -0.2627 -0.2501 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 24"
[1] "ENDing cell.. 24 With feature... Polarity"
[1] "STARTing cell.. 276 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.279 0.24 0.226 0.221 0.291 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 276"
[1] "ENDing cell.. 276 With feature... Polarity"
[1] "STARTing cell.. 115 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.00814 -0.04614 -0.04429 -0.01267 -0.12929 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 115"
[1] "ENDing cell.. 115 With feature... Polarity"
[1] "STARTing cell.. 132 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.489 0.488 0.514 0.559 0.581 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 132"
[1] "ENDing cell.. 132 With feature... Polarity"
[1] "STARTing cell.. 138 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.073 0.011 -0.0183 -0.0427 -0.0157 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 138"
[1] "ENDing cell.. 138 With feature... Polarity"
[1] "STARTing cell.. 227 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.0734 0.0368 0.1649 0.1218 0.1011 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 227"
[1] "ENDing cell.. 227 With feature... Polarity"
[1] "STARTing cell.. 257 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0336 -0.071 -0.127 -0.1317 -0.1318 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 257"
[1] "ENDing cell.. 257 With feature... Polarity"
[1] "STARTing cell.. 133 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.1411 0.0539 0.0719 0.1441 0.0815 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 133"
[1] "ENDing cell.. 133 With feature... Polarity"
[1] "STARTing cell.. 126 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.2194 -0.0862 -0.0242 0.0958 0.1459 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 126"
[1] "ENDing cell.. 126 With feature... Polarity"
[1] "STARTing cell.. 78 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.269 0.255 0.181 0.178 0.139 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 78"
[1] "ENDing cell.. 78 With feature... Polarity"
[1] "STARTing cell.. 166 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.1341 -0.1268 -0.142 -0.1398 -0.0922 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 166"
[1] "ENDing cell.. 166 With feature... Polarity"
[1] "STARTing cell.. 195 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.254 0.331 0.38 0.377 0.403 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 195"
[1] "ENDing cell.. 195 With feature... Polarity"
[1] "STARTing cell.. 251 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.0599 0.1343 0.1457 0.24 0.3687 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 251"
[1] "ENDing cell.. 251 With feature... Polarity"
[1] "STARTing cell.. 12 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.234 0.211 0.278 0.273 0.321 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 12"
[1] "ENDing cell.. 12 With feature... Polarity"
[1] "STARTing cell.. 222 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.0565 0.2131 0.3073 0.3167 0.3105 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 222"
[1] "ENDing cell.. 222 With feature... Polarity"
[1] "STARTing cell.. 60 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.0244 0.1265 0.1707 0.0749 0.1796 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 60"
[1] "ENDing cell.. 60 With feature... Polarity"
[1] "STARTing cell.. 63 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0932 -0.1597 -0.1282 -0.1622 -0.0261 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 63"
[1] "ENDing cell.. 63 With feature... Polarity"
[1] "STARTing cell.. 175 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.01752 -0.01575 0.07863 0.00317 0.10162 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 175"
[1] "ENDing cell.. 175 With feature... Polarity"
[1] "STARTing cell.. 234 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.489 0.538 0.488 0.505 0.506 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 234"
[1] "ENDing cell.. 234 With feature... Polarity"
[1] "STARTing cell.. 192 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.15 -0.172 -0.202 -0.117 -0.127 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 192"
[1] "ENDing cell.. 192 With feature... Polarity"
[1] "STARTing cell.. 240 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.029 -0.0471 -0.0572 0.0242 -0.071 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 240"
[1] "ENDing cell.. 240 With feature... Polarity"
[1] "STARTing cell.. 80 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.106 0.147 0.128 0.147 0.165 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 80"
[1] "ENDing cell.. 80 With feature... Polarity"
[1] "STARTing cell.. 97 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.06175 -0.04396 -0.00268 -0.2337 -0.45718 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 97"
[1] "ENDing cell.. 97 With feature... Polarity"
[1] "STARTing cell.. 207 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.155 0.164 0.218 0.236 0.26 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 207"
[1] "ENDing cell.. 207 With feature... Polarity"
[1] "STARTing cell.. 277 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0865 -0.0878 -0.0773 -0.1222 -0.2726 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 277"
[1] "ENDing cell.. 277 With feature... Polarity"
[1] "STARTing cell.. 73 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.525 -0.536 -0.513 -0.539 -0.469 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 73"
[1] "ENDing cell.. 73 With feature... Polarity"
[1] "STARTing cell.. 139 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.1656 0.1471 0.0254 -0.0504 -0.1235 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 139"
[1] "ENDing cell.. 139 With feature... Polarity"
[1] "STARTing cell.. 258 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.1034 -0.0913 -0.0284 -0.0293 0.0246 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 258"
[1] "ENDing cell.. 258 With feature... Polarity"
[1] "STARTing cell.. 179 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.2662 0.1642 0.0978 0.1088 0.1553 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 179"
[1] "ENDing cell.. 179 With feature... Polarity"
[1] "STARTing cell.. 167 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0507 0.0665 0.2514 0.2733 0.2225 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 167"
[1] "ENDing cell.. 167 With feature... Polarity"
[1] "STARTing cell.. 252 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.175 -0.18 -0.149 -0.165 -0.205 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 252"
[1] "ENDing cell.. 252 With feature... Polarity"
[1] "STARTing cell.. 81 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.1492 0.1659 0.0565 0.0472 0.1861 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 81"
[1] "ENDing cell.. 81 With feature... Polarity"
[1] "STARTing cell.. 14 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.347 -0.323 -0.271 -0.28 -0.288 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 14"
[1] "ENDing cell.. 14 With feature... Polarity"
[1] "STARTing cell.. 199 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.148 -0.156 -0.179 -0.127 -0.12 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 199"
[1] "ENDing cell.. 199 With feature... Polarity"
[1] "STARTing cell.. 266 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0324 -0.0495 0.0211 0.0968 0.149 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 266"
[1] "ENDing cell.. 266 With feature... Polarity"
[1] "STARTing cell.. 116 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.228 0.278 0.217 0.152 0.241 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 116"
[1] "ENDing cell.. 116 With feature... Polarity"
[1] "STARTing cell.. 176 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.177 0.129 0.197 0.304 0.169 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 176"
[1] "ENDing cell.. 176 With feature... Polarity"
[1] "STARTing cell.. 235 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.071 0.0698 0.0676 0.0464 -0.077 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 235"
[1] "ENDing cell.. 235 With feature... Polarity"
[1] "STARTing cell.. 38 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.00457 0.03289 -0.01997 0.01515 -0.03573 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 38"
[1] "ENDing cell.. 38 With feature... Polarity"
[1] "STARTing cell.. 105 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.0458 0.0429 0.0667 0.0819 0.0578 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 105"
[1] "ENDing cell.. 105 With feature... Polarity"
[1] "STARTing cell.. 193 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.304 -0.265 -0.2 -0.175 -0.242 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 193"
[1] "ENDing cell.. 193 With feature... Polarity"
[1] "STARTing cell.. 181 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.158 0.141 0.141 0.136 0.241 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 181"
[1] "ENDing cell.. 181 With feature... Polarity"
[1] "STARTing cell.. 28 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.136 0.147 0.203 0.238 0.238 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 28"
[1] "ENDing cell.. 28 With feature... Polarity"
[1] "STARTing cell.. 98 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.1841 0.1719 0.0558 0.0244 -0.1014 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 98"
[1] "ENDing cell.. 98 With feature... Polarity"
[1] "STARTing cell.. 200 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.241 0.197 0.138 0.317 0.311 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 200"
[1] "ENDing cell.. 200 With feature... Polarity"
[1] "STARTing cell.. 209 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.3147 -0.2245 -0.1468 -0.0622 0.0437 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 209"
[1] "ENDing cell.. 209 With feature... Polarity"
[1] "STARTing cell.. 278 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.344 0.366 0.34 0.294 0.293 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 278"
[1] "ENDing cell.. 278 With feature... Polarity"
[1] "STARTing cell.. 75 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.502 -0.344 -0.376 -0.302 -0.245 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 75"
[1] "ENDing cell.. 75 With feature... Polarity"
[1] "STARTing cell.. 141 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.00664 -0.00714 -0.09039 -0.11158 -0.17417 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 141"
[1] "ENDing cell.. 141 With feature... Polarity"
[1] "STARTing cell.. 259 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.0244 -0.0808 -0.1193 -0.0106 -0.0261 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 259"
[1] "ENDing cell.. 259 With feature... Polarity"
[1] "STARTing cell.. 16 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.0682 0.125 0.1172 0.116 0.2201 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 16"
[1] "ENDing cell.. 16 With feature... Polarity"
[1] "STARTing cell.. 267 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.168 0.257 0.324 0.376 0.371 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 267"
[1] "ENDing cell.. 267 With feature... Polarity"
[1] "STARTing cell.. 201 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.05741 0.01711 -0.05608 -0.00739 -0.08653 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 201"
[1] "ENDing cell.. 201 With feature... Polarity"
[1] "STARTing cell.. 117 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.325 -0.309 -0.264 -0.236 -0.137 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 117"
[1] "ENDing cell.. 117 With feature... Polarity"
[1] "STARTing cell.. 177 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.06391 -0.0056 -0.00904 0.0774 0.1801 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 177"
[1] "ENDing cell.. 177 With feature... Polarity"
[1] "STARTing cell.. 15 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.4084 -0.379 -0.2726 -0.1292 0.0214 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 15"
[1] "ENDing cell.. 15 With feature... Polarity"
[1] "STARTing cell.. 106 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.3156 -0.2205 -0.1922 -0.0268 0.1229 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 106"
[1] "ENDing cell.. 106 With feature... Polarity"
[1] "STARTing cell.. 194 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.194 0.169 0.175 0.233 0.247 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 194"
[1] "ENDing cell.. 194 With feature... Polarity"
[1] "STARTing cell.. 31 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.181 -0.266 -0.319 -0.374 -0.418 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 31"
[1] "ENDing cell.. 31 With feature... Polarity"
[1] "STARTing cell.. 77 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.00249 0.02621 0.03941 0.13008 0.10235 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 77"
[1] "ENDing cell.. 77 With feature... Polarity"
[1] "STARTing cell.. 91 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0985 0.0453 0.0797 0.1575 0.392 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 91"
[1] "ENDing cell.. 91 With feature... Polarity"
[1] "STARTing cell.. 142 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.0403 0.0787 0.1076 0.1383 0.1272 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 142"
[1] "ENDing cell.. 142 With feature... Polarity"
[1] "STARTing cell.. 17 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.1456 -0.1062 -0.1407 -0.0936 0.0267 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 17"
[1] "ENDing cell.. 17 With feature... Polarity"
[1] "STARTing cell.. 62 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.1613 0.1063 0.102 0.0467 -0.0555 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 62"
[1] "ENDing cell.. 62 With feature... Polarity"
[1] "STARTing cell.. 168 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.302 -0.206 -0.215 -0.194 -0.115 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 168"
[1] "ENDing cell.. 168 With feature... Polarity"
[1] "STARTing cell.. 127 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.194 0.1746 0.0932 0.0177 -0.0957 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 127"
[1] "ENDing cell.. 127 With feature... Polarity"
[1] "STARTing cell.. 253 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.000911 0.029077 -0.003162 0.092448 0.070565 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 253"
[1] "ENDing cell.. 253 With feature... Polarity"
[1] "STARTing cell.. 118 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.145 0.199 0.211 0.304 0.24 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 118"
[1] "ENDing cell.. 118 With feature... Polarity"
[1] "STARTing cell.. 39 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.06627 -0.0776 -0.00886 -0.07707 -0.07957 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 39"
[1] "ENDing cell.. 39 With feature... Polarity"
[1] "STARTing cell.. 107 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.0741 0.2261 0.2733 0.3611 0.3776 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 107"
[1] "ENDing cell.. 107 With feature... Polarity"
[1] "STARTing cell.. 196 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.00719 0.05367 -0.01375 -0.07817 -0.09024 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 196"
[1] "ENDing cell.. 196 With feature... Polarity"
[1] "STARTing cell.. 212 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.132 -0.206 -0.375 -0.447 -0.454 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 212"
[1] "ENDing cell.. 212 With feature... Polarity"
[1] "STARTing cell.. 79 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.1384 0.1646 0.1341 0.0905 0.1218 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 79"
[1] "ENDing cell.. 79 With feature... Polarity"
[1] "STARTing cell.. 143 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.156 -0.127 -0.147 -0.137 -0.128 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 143"
[1] "ENDing cell.. 143 With feature... Polarity"
[1] "STARTing cell.. 92 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.2753 -0.3293 -0.0533 -0.0589 -0.012 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 92"
[1] "ENDing cell.. 92 With feature... Polarity"
[1] "STARTing cell.. 169 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.343 -0.406 -0.428 -0.529 -0.432 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 169"
[1] "ENDing cell.. 169 With feature... Polarity"
[1] "STARTing cell.. 254 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.02495 -0.00674 0.06127 0.02921 0.09108 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 254"
[1] "ENDing cell.. 254 With feature... Polarity"
[1] "STARTing cell.. 269 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.141 -0.22 -0.245 -0.246 -0.256 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 269"
[1] "ENDing cell.. 269 With feature... Polarity"
[1] "STARTing cell.. 119 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.493 -0.412 -0.382 -0.294 -0.244 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 119"
[1] "ENDing cell.. 119 With feature... Polarity"
[1] "STARTing cell.. 180 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.2766 0.1735 0.2584 0.1509 0.0706 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 180"
[1] "ENDing cell.. 180 With feature... Polarity"
[1] "STARTing cell.. 151 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.095181 0.133225 -0.000463 0.264741 0.310989 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 151"
[1] "ENDing cell.. 151 With feature... Polarity"
[1] "STARTing cell.. 40 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0985 -0.1343 -0.1343 -0.1681 -0.23 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 40"
[1] "ENDing cell.. 40 With feature... Polarity"
[1] "STARTing cell.. 191 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.00216 0.08954 0.11714 0.11922 0.11251 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 191"
[1] "ENDing cell.. 191 With feature... Polarity"
[1] "STARTing cell.. 108 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0447 -0.109 -0.1408 -0.2448 -0.2532 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 108"
[1] "ENDing cell.. 108 With feature... Polarity"
[1] "STARTing cell.. 198 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.044 0.1611 -0.169 -0.0476 -0.1233 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 198"
[1] "ENDing cell.. 198 With feature... Polarity"
[1] "STARTing cell.. 144 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.311 0.437 0.535 0.578 0.58 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 144"
[1] "ENDing cell.. 144 With feature... Polarity"
[1] "STARTing cell.. 170 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.1376 0.0582 -0.0236 -0.1134 -0.1011 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 170"
[1] "ENDing cell.. 170 With feature... Polarity"
[1] "STARTing cell.. 270 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0317 0.0746 0.0782 0.376 0.1145 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 270"
[1] "ENDing cell.. 270 With feature... Polarity"
[1] "STARTing cell.. 41 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.145 0.214 0.218 0.426 0.452 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 41"
[1] "ENDing cell.. 41 With feature... Polarity"
[1] "STARTing cell.. 154 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.00387 0.05377 0.08346 0.02923 0.11286 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 154"
[1] "ENDing cell.. 154 With feature... Polarity"
[1] "STARTing cell.. 90 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.10519 -0.03143 0.01787 0.27202 -0.00481 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 90"
[1] "ENDing cell.. 90 With feature... Polarity"
[1] "STARTing cell.. 145 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.321 -0.343 -0.408 -0.459 -0.477 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 145"
[1] "ENDing cell.. 145 With feature... Polarity"
[1] "STARTing cell.. 271 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.2049 -0.1616 -0.1434 -0.0993 -0.0772 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 271"
[1] "ENDing cell.. 271 With feature... Polarity"
[1] "STARTing cell.. 183 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0523 -0.0537 -0.1089 -0.0672 0.0593 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 183"
[1] "ENDing cell.. 183 With feature... Polarity"
[1] "STARTing cell.. 147 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.04971 -0.03773 -0.00388 0.04829 0.08615 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 147"
[1] "ENDing cell.. 147 With feature... Polarity"
[1] "STARTing cell.. 178 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0438 -0.1772 -0.1601 -0.1668 -0.1562 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 178"
[1] "ENDing cell.. 178 With feature... Polarity"
[1] "STARTing cell.. 272 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.1697 0.152 0.1795 0.1195 0.0958 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 272"
[1] "ENDing cell.. 272 With feature... Polarity"
[1] "STARTing cell.. 43 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.472 -0.461 -0.449 -0.421 -0.42 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 43"
[1] "ENDing cell.. 43 With feature... Polarity"
[1] "STARTing cell.. 99 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.135 -0.1022 -0.0182 0.1087 0.2442 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 99"
[1] "ENDing cell.. 99 With feature... Polarity"
[1] "STARTing cell.. 155 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.1731 -0.1044 0.0247 -0.1437 -0.2399 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 155"
[1] "ENDing cell.. 155 With feature... Polarity"
[1] "STARTing cell.. 148 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.341 0.302 0.316 0.29 0.241 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 148"
[1] "ENDing cell.. 148 With feature... Polarity"
[1] "STARTing cell.. 215 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.2666 -0.208 -0.172 -0.1125 -0.0462 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 215"
[1] "ENDing cell.. 215 With feature... Polarity"
[1] "STARTing cell.. 149 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.05151 0.132 0.04284 0.11048 -0.00489 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 149"
[1] "ENDing cell.. 149 With feature... Polarity"
[1] "STARTing cell.. 89 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.1278 -0.0428 0.0487 0.0853 0.0282 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 89"
[1] "ENDing cell.. 89 With feature... Polarity"
[1] "STARTing cell.. 156 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.04707 -0.00211 0.05042 -0.0308 -0.11857 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 156"
[1] "ENDing cell.. 156 With feature... Polarity"
[1] "STARTing cell.. 150 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.2214 0.2248 0.0939 -0.0158 0.0498 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 150"
[1] "ENDing cell.. 150 With feature... Polarity"
[1] "STARTing cell.. 42 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.27 -0.1599 -0.0741 0.0739 0.1665 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 42"
[1] "ENDing cell.. 42 With feature... Polarity"
[1] "STARTing cell.. 44 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.0519 0.1315 0.21 0.2187 0.2017 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 44"
[1] "ENDing cell.. 44 With feature... Polarity"
[1] "STARTing cell.. 100 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.0837 0.153 0.2514 0.1384 -0.031 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 100"
[1] "ENDing cell.. 100 With feature... Polarity"
[1] "STARTing cell.. 153 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0283 0.0539 0.0941 0.1741 0.213 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 153"
[1] "ENDing cell.. 153 With feature... Polarity"
[1] "STARTing cell.. 47 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.31153 -0.21278 -0.20244 -0.10392 0.00159 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 47"
[1] "ENDing cell.. 47 With feature... Polarity"
[1] "STARTing cell.. 202 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0311 -0.0433 -0.0491 -0.1863 -0.1259 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 202"
[1] "ENDing cell.. 202 With feature... Polarity"
[1] "STARTing cell.. 51 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0373 0.1415 0.0383 0.0508 0.1057 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 51"
[1] "ENDing cell.. 51 With feature... Polarity"
[1] "STARTing cell.. 260 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.226 0.316 0.363 0.488 0.507 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 260"
[1] "ENDing cell.. 260 With feature... Polarity"
[1] "STARTing cell.. 217 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.274 0.318 0.382 0.312 0.227 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 217"
[1] "ENDing cell.. 217 With feature... Polarity"
[1] "STARTing cell.. 182 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.2388 -0.2536 -0.1353 -0.2258 -0.0883 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 182"
[1] "ENDing cell.. 182 With feature... Polarity"
[1] "STARTing cell.. 184 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.1135 -0.1011 -0.0852 -0.067 -0.0182 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 184"
[1] "ENDing cell.. 184 With feature... Polarity"
[1] "STARTing cell.. 45 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.310608 -0.248179 -0.10101 0.000406 0.065757 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 45"
[1] "ENDing cell.. 45 With feature... Polarity"
[1] "STARTing cell.. 241 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.1346 0.0846 0.0528 0.0979 0.0955 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 241"
[1] "ENDing cell.. 241 With feature... Polarity"
[1] "STARTing cell.. 82 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.271 -0.264 -0.388 -0.37 -0.487 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 82"
[1] "ENDing cell.. 82 With feature... Polarity"
[1] "STARTing cell.. 261 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.00134 0.01782 -0.07101 -0.11973 0.03527 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 261"
[1] "ENDing cell.. 261 With feature... Polarity"
[1] "STARTing cell.. 262 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.168 -0.257 -0.206 -0.228 -0.165 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 262"
[1] "ENDing cell.. 262 With feature... Polarity"
[1] "STARTing cell.. 216 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.2 0.247 0.327 0.175 0.286 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 216"
[1] "ENDing cell.. 216 With feature... Polarity"
[1] "STARTing cell.. 66 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.00678 -0.09496 -0.38718 -0.14018 -0.26978 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 66"
[1] "ENDing cell.. 66 With feature... Polarity"
[1] "STARTing cell.. 128 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.0465 0.0624 0.0693 0.0581 0.0883 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 128"
[1] "ENDing cell.. 128 With feature... Polarity"
[1] "STARTing cell.. 50 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.09401 0.00146 0.08632 0.07395 0.06984 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 50"
[1] "ENDing cell.. 50 With feature... Polarity"
[1] "STARTing cell.. 5 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.1092 -0.0512 -0.0503 0.0363 0.0598 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 5"
[1] "ENDing cell.. 5 With feature... Polarity"
[1] "STARTing cell.. 26 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.0634 0.0489 -0.0502 -0.0876 0.0589 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 26"
[1] "ENDing cell.. 26 With feature... Polarity"
[1] "STARTing cell.. 129 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.406 -0.39 -0.309 -0.199 -0.13 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 129"
[1] "ENDing cell.. 129 With feature... Polarity"
[1] "STARTing cell.. 67 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.255 -0.266 -0.214 -0.2 -0.287 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 67"
[1] "ENDing cell.. 67 With feature... Polarity"
[1] "STARTing cell.. 247 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0253 -0.01258 -0.08384 -0.1126 0.00394 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 247"
[1] "ENDing cell.. 247 With feature... Polarity"
[1] "STARTing cell.. 134 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.1294 -0.0974 -0.0199 0.0514 0.1946 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 134"
[1] "ENDing cell.. 134 With feature... Polarity"
[1] "STARTing cell.. 93 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.253 0.384 0.487 0.39 0.37 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 93"
[1] "ENDing cell.. 93 With feature... Polarity"
[1] "STARTing cell.. 248 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0568 0.1486 0.088 0.0281 0.2516 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 248"
[1] "ENDing cell.. 248 With feature... Polarity"
[1] "STARTing cell.. 157 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.1348 -0.0925 -0.1188 -0.0323 -0.0699 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 157"
[1] "ENDing cell.. 157 With feature... Polarity"
[1] "STARTing cell.. 46 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0371 0.1201 0.2363 0.2377 0.3328 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 46"
[1] "ENDing cell.. 46 With feature... Polarity"
[1] "STARTing cell.. 242 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.0891 0.2272 0.3971 0.3898 0.4416 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 242"
[1] "ENDing cell.. 242 With feature... Polarity"
[1] "STARTing cell.. 159 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.1112 0.0869 0.1076 0.0789 -0.0437 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 159"
[1] "ENDing cell.. 159 With feature... Polarity"
[1] "STARTing cell.. 186 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0202 0.0859 -0.0947 -0.2479 -0.2011 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 186"
[1] "ENDing cell.. 186 With feature... Polarity"
[1] "STARTing cell.. 228 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.245 -0.478 -0.504 -0.532 -0.557 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 228"
[1] "ENDing cell.. 228 With feature... Polarity"
[1] "STARTing cell.. 160 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.405 -0.43 -0.436 -0.496 -0.351 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 160"
[1] "ENDing cell.. 160 With feature... Polarity"
[1] "STARTing cell.. 279 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.00525 0.01093 0.07073 0.23815 0.14938 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 279"
[1] "ENDing cell.. 279 With feature... Polarity"
[1] "STARTing cell.. 53 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.1746 0.2986 0.2424 0.0868 -0.1983 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 53"
[1] "ENDing cell.. 53 With feature... Polarity"
[1] "STARTing cell.. 94 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.0624 -0.0207 -0.0605 -0.0468 -0.0511 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 94"
[1] "ENDing cell.. 94 With feature... Polarity"
[1] "STARTing cell.. 121 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.0392 0.0671 -0.0117 -0.0915 0.1452 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 121"
[1] "ENDing cell.. 121 With feature... Polarity"
[1] "STARTing cell.. 213 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.309 0.221 0.22 0.293 0.424 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 213"
[1] "ENDing cell.. 213 With feature... Polarity"
[1] "STARTing cell.. 109 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.10373 -0.0067 -0.00443 0.09477 0.04652 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 109"
[1] "ENDing cell.. 109 With feature... Polarity"
[1] "STARTing cell.. 110 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.034 0.133 0.101 0.151 0.303 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 110"
[1] "ENDing cell.. 110 With feature... Polarity"
[1] "STARTing cell.. 101 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.0495 0.2639 0.3159 0.327 0.1349 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 101"
[1] "ENDing cell.. 101 With feature... Polarity"
[1] "STARTing cell.. 187 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.209 -0.34 -0.425 -0.36 -0.294 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 187"
[1] "ENDing cell.. 187 With feature... Polarity"
[1] "STARTing cell.. 263 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.17 0.187 0.299 0.295 0.288 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 263"
[1] "ENDing cell.. 263 With feature... Polarity"
[1] "STARTing cell.. 218 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.3842 -0.3499 -0.2575 -0.1402 -0.0941 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 218"
[1] "ENDing cell.. 218 With feature... Polarity"
[1] "STARTing cell.. 19 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] -0.448 -0.335 -0.284 -0.298 -0.203 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 19"
[1] "ENDing cell.. 19 With feature... Polarity"
[1] "STARTing cell.. 20 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.0331 -0.0297 -0.1419 -0.1791 -0.2711 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 20"
[1] "ENDing cell.. 20 With feature... Polarity"
[1] "STARTing cell.. 224 With feature... Polarity"
List of 6
$ acf : num [1:27, 1, 1] 0.2742 0.1234 -0.0638 -0.2566 -0.4678 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 224"
[1] "ENDing cell.. 224 With feature... Polarity"
[1] "STARTing cell.. 219 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0115 -0.0334 -0.0395 0.0159 0.0812 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 219"
[1] "ENDing cell.. 219 With feature... Spreading"
[1] "STARTing cell.. 264 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.2308 0.1639 0.2754 0.0715 0.0857 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 264"
[1] "ENDing cell.. 264 With feature... Spreading"
[1] "STARTing cell.. 136 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.116 -0.119 -0.122 -0.142 -0.168 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 136"
[1] "ENDing cell.. 136 With feature... Spreading"
[1] "STARTing cell.. 54 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.2986 -0.2543 -0.1455 -0.1345 -0.0631 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 54"
[1] "ENDing cell.. 54 With feature... Spreading"
[1] "STARTing cell.. 69 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.185 -0.235 -0.226 -0.238 -0.211 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 69"
[1] "ENDing cell.. 69 With feature... Spreading"
[1] "STARTing cell.. 111 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.175 -0.099 -0.145 -0.216 -0.222 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 111"
[1] "ENDing cell.. 111 With feature... Spreading"
[1] "STARTing cell.. 189 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0773 -0.012 0.0416 0.0507 0.1024 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 189"
[1] "ENDing cell.. 189 With feature... Spreading"
[1] "STARTing cell.. 171 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.086 -0.0576 -0.1127 0.0434 0.1896 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 171"
[1] "ENDing cell.. 171 With feature... Spreading"
[1] "STARTing cell.. 231 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.258 -0.276 -0.217 -0.182 -0.191 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 231"
[1] "ENDing cell.. 231 With feature... Spreading"
[1] "STARTing cell.. 205 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.458 -0.444 -0.41 -0.274 -0.105 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 205"
[1] "ENDing cell.. 205 With feature... Spreading"
[1] "STARTing cell.. 244 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0535 -0.0212 -0.0361 -0.1464 -0.1552 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 244"
[1] "ENDing cell.. 244 With feature... Spreading"
[1] "STARTing cell.. 1 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.274 -0.356 -0.472 -0.521 -0.493 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 1"
[1] "ENDing cell.. 1 With feature... Spreading"
[1] "STARTing cell.. 36 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.247 0.222 0.193 0.191 0.119 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 36"
[1] "ENDing cell.. 36 With feature... Spreading"
[1] "STARTing cell.. 7 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.1189 -0.0991 -0.0895 -0.0934 -0.0951 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 7"
[1] "ENDing cell.. 7 With feature... Spreading"
[1] "STARTing cell.. 102 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.00156 0.07073 0.05871 0.08935 0.11942 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 102"
[1] "ENDing cell.. 102 With feature... Spreading"
[1] "STARTing cell.. 22 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.04385 -0.00753 0.05754 0.16629 0.24368 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 22"
[1] "ENDing cell.. 22 With feature... Spreading"
[1] "STARTing cell.. 188 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.133 -0.151 -0.183 -0.303 -0.154 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 188"
[1] "ENDing cell.. 188 With feature... Spreading"
[1] "STARTing cell.. 55 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.1837 -0.1463 -0.0904 0.0106 0.1209 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 55"
[1] "ENDing cell.. 55 With feature... Spreading"
[1] "STARTing cell.. 243 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.174 -0.17 -0.191 -0.208 -0.277 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 243"
[1] "ENDing cell.. 243 With feature... Spreading"
[1] "STARTing cell.. 123 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.377 -0.214 -0.298 -0.196 -0.228 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 123"
[1] "ENDing cell.. 123 With feature... Spreading"
[1] "STARTing cell.. 21 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.2949 -0.2266 -0.183 -0.1057 -0.0421 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 21"
[1] "ENDing cell.. 21 With feature... Spreading"
[1] "STARTing cell.. 163 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.2245 0.0828 0.0536 0.0482 -0.096 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 163"
[1] "ENDing cell.. 163 With feature... Spreading"
[1] "STARTing cell.. 112 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0129 -0.0654 0.0536 0.2468 0.341 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 112"
[1] "ENDing cell.. 112 With feature... Spreading"
[1] "STARTing cell.. 33 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.221 -0.271 -0.229 -0.279 -0.202 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 33"
[1] "ENDing cell.. 33 With feature... Spreading"
[1] "STARTing cell.. 172 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.337 -0.37 -0.463 -0.5 -0.594 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 172"
[1] "ENDing cell.. 172 With feature... Spreading"
[1] "STARTing cell.. 95 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.00265 0.07805 0.15394 0.20348 0.26723 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 95"
[1] "ENDing cell.. 95 With feature... Spreading"
[1] "STARTing cell.. 30 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.2122 0.2408 0.1603 -0.0265 -0.0144 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 30"
[1] "ENDing cell.. 30 With feature... Spreading"
[1] "STARTing cell.. 203 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.15472 0.00831 0.03487 0.14934 0.01927 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 203"
[1] "ENDing cell.. 203 With feature... Spreading"
[1] "STARTing cell.. 274 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.00986 0.03518 0.06402 0.02503 0.01076 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 274"
[1] "ENDing cell.. 274 With feature... Spreading"
[1] "STARTing cell.. 131 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.136 0.0562 0.1267 0.1733 0.0544 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 131"
[1] "ENDing cell.. 131 With feature... Spreading"
[1] "STARTing cell.. 68 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.066 -0.07 -0.0531 -0.1082 -0.1471 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 68"
[1] "ENDing cell.. 68 With feature... Spreading"
[1] "STARTing cell.. 71 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.118 -0.061 -0.0213 0.0184 0.0908 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 71"
[1] "ENDing cell.. 71 With feature... Spreading"
[1] "STARTing cell.. 135 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.308 -0.312 -0.312 -0.328 -0.4 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 135"
[1] "ENDing cell.. 135 With feature... Spreading"
[1] "STARTing cell.. 84 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0211 0.0166 -0.0343 -0.0741 -0.1578 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 84"
[1] "ENDing cell.. 84 With feature... Spreading"
[1] "STARTing cell.. 206 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.27 0.358 0.423 0.505 0.489 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 206"
[1] "ENDing cell.. 206 With feature... Spreading"
[1] "STARTing cell.. 255 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0879 -0.0606 -0.1539 -0.1413 -0.1963 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 255"
[1] "ENDing cell.. 255 With feature... Spreading"
[1] "STARTing cell.. 64 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0822 -0.0181 -0.0063 -0.1026 -0.1234 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 64"
[1] "ENDing cell.. 64 With feature... Spreading"
[1] "STARTing cell.. 9 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.01105 -0.03133 0.06314 0.00174 -0.01697 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 9"
[1] "ENDing cell.. 9 With feature... Spreading"
[1] "STARTing cell.. 122 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.576 -0.478 -0.35 -0.258 -0.133 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 122"
[1] "ENDing cell.. 122 With feature... Spreading"
[1] "STARTing cell.. 23 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0434 0.0144 -0.0369 -0.025 -0.0993 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 23"
[1] "ENDing cell.. 23 With feature... Spreading"
[1] "STARTing cell.. 162 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.103 0.346 0.351 0.396 0.498 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 162"
[1] "ENDing cell.. 162 With feature... Spreading"
[1] "STARTing cell.. 229 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.387 0.493 0.537 0.544 0.432 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 229"
[1] "ENDing cell.. 229 With feature... Spreading"
[1] "STARTing cell.. 57 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0822 -0.098 -0.0669 0.0177 -0.065 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 57"
[1] "ENDing cell.. 57 With feature... Spreading"
[1] "STARTing cell.. 249 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.081 -0.0498 0.0441 0.2227 0.1583 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 249"
[1] "ENDing cell.. 249 With feature... Spreading"
[1] "STARTing cell.. 125 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.10741 0.07478 0.09306 -0.00986 -0.00702 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 125"
[1] "ENDing cell.. 125 With feature... Spreading"
[1] "STARTing cell.. 8 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.27828 -0.11202 -0.01557 0.00511 0.09566 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 8"
[1] "ENDing cell.. 8 With feature... Spreading"
[1] "STARTing cell.. 165 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0841 0.0412 -0.0453 0.1342 0.1267 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 165"
[1] "ENDing cell.. 165 With feature... Spreading"
[1] "STARTing cell.. 83 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0262 -0.0905 -0.1158 -0.1219 -0.1747 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 83"
[1] "ENDing cell.. 83 With feature... Spreading"
[1] "STARTing cell.. 113 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.276 -0.157 -0.188 -0.282 -0.225 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 113"
[1] "ENDing cell.. 113 With feature... Spreading"
[1] "STARTing cell.. 220 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.1723 -0.1241 -0.0414 0.0351 0.0842 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 220"
[1] "ENDing cell.. 220 With feature... Spreading"
[1] "STARTing cell.. 174 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.304 0.385 0.443 0.529 0.525 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 174"
[1] "ENDing cell.. 174 With feature... Spreading"
[1] "STARTing cell.. 56 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.32 0.385 0.428 0.444 0.36 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 56"
[1] "ENDing cell.. 56 With feature... Spreading"
[1] "STARTing cell.. 173 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.076 0.189 0.228 0.326 0.354 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 173"
[1] "ENDing cell.. 173 With feature... Spreading"
[1] "STARTing cell.. 232 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0197 0.0598 0.1767 0.1315 0.179 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 232"
[1] "ENDing cell.. 232 With feature... Spreading"
[1] "STARTing cell.. 37 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.02939 0.00674 -0.03166 0.00258 0.01436 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 37"
[1] "ENDing cell.. 37 With feature... Spreading"
[1] "STARTing cell.. 86 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.1971 0.215 0.2455 0.1225 0.0215 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 86"
[1] "ENDing cell.. 86 With feature... Spreading"
[1] "STARTing cell.. 103 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.1348 -0.0844 -0.0299 0.0474 0.1064 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 103"
[1] "ENDing cell.. 103 With feature... Spreading"
[1] "STARTing cell.. 208 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0152 0.073 0.1212 0.1748 0.2429 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 208"
[1] "ENDing cell.. 208 With feature... Spreading"
[1] "STARTing cell.. 190 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.221 0.245 0.349 0.32 0.452 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 190"
[1] "ENDing cell.. 190 With feature... Spreading"
[1] "STARTing cell.. 4 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.1435 -0.1389 -0.111 -0.0775 -0.0534 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 4"
[1] "ENDing cell.. 4 With feature... Spreading"
[1] "STARTing cell.. 238 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0115 0.0895 -0.0577 -0.1535 -0.0482 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 238"
[1] "ENDing cell.. 238 With feature... Spreading"
[1] "STARTing cell.. 11 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0414 -0.0593 0.0408 -0.0082 0.1137 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 11"
[1] "ENDing cell.. 11 With feature... Spreading"
[1] "STARTing cell.. 29 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.03745 -0.00198 -0.02916 -0.0141 -0.06414 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 29"
[1] "ENDing cell.. 29 With feature... Spreading"
[1] "STARTing cell.. 59 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0159 0.1296 0.2766 0.3949 0.5518 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 59"
[1] "ENDing cell.. 59 With feature... Spreading"
[1] "STARTing cell.. 96 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.2507 0.2524 0.1482 0.0135 -0.0221 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 96"
[1] "ENDing cell.. 96 With feature... Spreading"
[1] "STARTing cell.. 204 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.1753 -0.0136 -0.0506 0.0728 0.1344 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 204"
[1] "ENDing cell.. 204 With feature... Spreading"
[1] "STARTing cell.. 275 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.136 0.24 0.267 0.226 0.194 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 275"
[1] "ENDing cell.. 275 With feature... Spreading"
[1] "STARTing cell.. 130 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0963 0.0743 0.0119 0.0655 0.0031 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 130"
[1] "ENDing cell.. 130 With feature... Spreading"
[1] "STARTing cell.. 137 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.332 0.403 0.441 0.501 0.469 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 137"
[1] "ENDing cell.. 137 With feature... Spreading"
[1] "STARTing cell.. 140 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.3048 -0.1527 -0.0706 -0.0497 0.126 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 140"
[1] "ENDing cell.. 140 With feature... Spreading"
[1] "STARTing cell.. 226 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.01537 0.00947 0.02188 -0.07238 -0.15787 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 226"
[1] "ENDing cell.. 226 With feature... Spreading"
[1] "STARTing cell.. 74 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0396 0.0657 -0.20718 -0.00609 0.00239 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 74"
[1] "ENDing cell.. 74 With feature... Spreading"
[1] "STARTing cell.. 256 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.126 -0.117 -0.164 -0.179 -0.122 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 256"
[1] "ENDing cell.. 256 With feature... Spreading"
[1] "STARTing cell.. 65 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0864 0.0251 0.0422 -0.0363 0.0328 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 65"
[1] "ENDing cell.. 65 With feature... Spreading"
[1] "STARTing cell.. 87 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.03703 0.20216 0.18903 0.09458 0.00765 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 87"
[1] "ENDing cell.. 87 With feature... Spreading"
[1] "STARTing cell.. 124 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0105 0.02 0.033 0.032 0.0519 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 124"
[1] "ENDing cell.. 124 With feature... Spreading"
[1] "STARTing cell.. 210 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.119 0.191 0.266 0.319 0.371 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 210"
[1] "ENDing cell.. 210 With feature... Spreading"
[1] "STARTing cell.. 164 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0483 0.0629 0.1425 0.0282 0.091 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 164"
[1] "ENDing cell.. 164 With feature... Spreading"
[1] "STARTing cell.. 230 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0401 0.0502 0.0405 0.0252 0.025 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 230"
[1] "ENDing cell.. 230 With feature... Spreading"
[1] "STARTing cell.. 13 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.076298 0.008777 0.073662 0.000448 -0.062598 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 13"
[1] "ENDing cell.. 13 With feature... Spreading"
[1] "STARTing cell.. 250 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.00754 0.0463 0.033 0.06496 0.0869 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 250"
[1] "ENDing cell.. 250 With feature... Spreading"
[1] "STARTing cell.. 10 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.163 0.214 0.236 0.292 0.361 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 10"
[1] "ENDing cell.. 10 With feature... Spreading"
[1] "STARTing cell.. 85 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0499 -0.0555 -0.1314 0.1602 0.1248 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 85"
[1] "ENDing cell.. 85 With feature... Spreading"
[1] "STARTing cell.. 61 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0907 0.1201 0.1148 0.0837 0.0115 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 61"
[1] "ENDing cell.. 61 With feature... Spreading"
[1] "STARTing cell.. 221 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.505 -0.512 -0.553 -0.574 -0.448 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 221"
[1] "ENDing cell.. 221 With feature... Spreading"
[1] "STARTing cell.. 265 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0549 0.0809 0.1682 0.291 0.2367 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 265"
[1] "ENDing cell.. 265 With feature... Spreading"
[1] "STARTing cell.. 58 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.199 -0.286 -0.326 -0.214 -0.127 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 58"
[1] "ENDing cell.. 58 With feature... Spreading"
[1] "STARTing cell.. 114 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0688 0.0358 -0.0589 -0.0264 0.0713 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 114"
[1] "ENDing cell.. 114 With feature... Spreading"
[1] "STARTing cell.. 233 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0361 0.093 0.1018 0.2485 0.2741 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 233"
[1] "ENDing cell.. 233 With feature... Spreading"
[1] "STARTing cell.. 246 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.00841 0.14854 0.17859 0.19219 0.14372 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 246"
[1] "ENDing cell.. 246 With feature... Spreading"
[1] "STARTing cell.. 104 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.1097 0.10013 0.06761 0.01821 -0.00997 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 104"
[1] "ENDing cell.. 104 With feature... Spreading"
[1] "STARTing cell.. 76 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.403 0.453 0.571 0.66 0.658 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 76"
[1] "ENDing cell.. 76 With feature... Spreading"
[1] "STARTing cell.. 239 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.1807 -0.1824 -0.2226 -0.0648 -0.0151 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 239"
[1] "ENDing cell.. 239 With feature... Spreading"
[1] "STARTing cell.. 88 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.196 -0.25 -0.263 -0.329 -0.123 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 88"
[1] "ENDing cell.. 88 With feature... Spreading"
[1] "STARTing cell.. 211 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.246 0.251 0.279 0.287 0.224 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 211"
[1] "ENDing cell.. 211 With feature... Spreading"
[1] "STARTing cell.. 24 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.355 0.368 0.352 0.392 0.387 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 24"
[1] "ENDing cell.. 24 With feature... Spreading"
[1] "STARTing cell.. 276 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.13 -0.163 -0.296 -0.322 -0.421 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 276"
[1] "ENDing cell.. 276 With feature... Spreading"
[1] "STARTing cell.. 115 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.1623 -0.0839 -0.0137 0.0779 0.0596 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 115"
[1] "ENDing cell.. 115 With feature... Spreading"
[1] "STARTing cell.. 132 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.287 0.248 0.32 0.328 0.393 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 132"
[1] "ENDing cell.. 132 With feature... Spreading"
[1] "STARTing cell.. 138 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.00404 -0.04315 -0.14554 -0.13162 -0.19631 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 138"
[1] "ENDing cell.. 138 With feature... Spreading"
[1] "STARTing cell.. 227 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.17145 -0.00946 -0.1388 -0.11496 -0.04836 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 227"
[1] "ENDing cell.. 227 With feature... Spreading"
[1] "STARTing cell.. 257 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0144 0.0782 0.0328 0.3047 0.2349 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 257"
[1] "ENDing cell.. 257 With feature... Spreading"
[1] "STARTing cell.. 133 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.236 -0.2278 -0.1272 -0.1366 -0.0217 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 133"
[1] "ENDing cell.. 133 With feature... Spreading"
[1] "STARTing cell.. 126 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.224 -0.1793 -0.0905 0.0706 0.1164 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 126"
[1] "ENDing cell.. 126 With feature... Spreading"
[1] "STARTing cell.. 78 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.00257 -0.06641 -0.15317 -0.16658 -0.22876 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 78"
[1] "ENDing cell.. 78 With feature... Spreading"
[1] "STARTing cell.. 166 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0946 0.1754 0.1318 0.0933 0.1804 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 166"
[1] "ENDing cell.. 166 With feature... Spreading"
[1] "STARTing cell.. 195 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0759 0.1377 0.1487 0.1697 0.2112 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 195"
[1] "ENDing cell.. 195 With feature... Spreading"
[1] "STARTing cell.. 251 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.317 -0.411 -0.405 -0.318 -0.223 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 251"
[1] "ENDing cell.. 251 With feature... Spreading"
[1] "STARTing cell.. 12 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.342 0.315 0.306 0.318 0.302 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 12"
[1] "ENDing cell.. 12 With feature... Spreading"
[1] "STARTing cell.. 222 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.2425 -0.2085 -0.1806 -0.0888 -0.0912 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 222"
[1] "ENDing cell.. 222 With feature... Spreading"
[1] "STARTing cell.. 60 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.111 0.1047 0.0746 0.1523 0.1206 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 60"
[1] "ENDing cell.. 60 With feature... Spreading"
[1] "STARTing cell.. 63 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.1388 -0.2073 -0.1651 -0.2381 0.0349 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 63"
[1] "ENDing cell.. 63 With feature... Spreading"
[1] "STARTing cell.. 175 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0241 0.0547 0.0731 0.1122 0.097 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 175"
[1] "ENDing cell.. 175 With feature... Spreading"
[1] "STARTing cell.. 234 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.126 -0.208 -0.246 -0.309 -0.359 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 234"
[1] "ENDing cell.. 234 With feature... Spreading"
[1] "STARTing cell.. 192 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0184 -0.0044 -0.1298 -0.1176 -0.1477 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 192"
[1] "ENDing cell.. 192 With feature... Spreading"
[1] "STARTing cell.. 240 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.08969 -0.106 -0.14929 0.07241 -0.00886 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 240"
[1] "ENDing cell.. 240 With feature... Spreading"
[1] "STARTing cell.. 80 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0142 0.0144 -0.0731 -0.1609 -0.1866 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 80"
[1] "ENDing cell.. 80 With feature... Spreading"
[1] "STARTing cell.. 97 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.172 0.199 0.133 0.01 -0.158 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 97"
[1] "ENDing cell.. 97 With feature... Spreading"
[1] "STARTing cell.. 207 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.1284 -0.2005 -0.0839 0.0101 0.0211 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 207"
[1] "ENDing cell.. 207 With feature... Spreading"
[1] "STARTing cell.. 277 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.09036 0.00301 0.06349 -0.20653 0.06968 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 277"
[1] "ENDing cell.. 277 With feature... Spreading"
[1] "STARTing cell.. 73 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.4 -0.377 -0.355 -0.323 -0.303 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 73"
[1] "ENDing cell.. 73 With feature... Spreading"
[1] "STARTing cell.. 139 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.2389 0.1875 0.0654 -0.0292 -0.0925 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 139"
[1] "ENDing cell.. 139 With feature... Spreading"
[1] "STARTing cell.. 258 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.218 -0.28 -0.251 -0.214 -0.204 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 258"
[1] "ENDing cell.. 258 With feature... Spreading"
[1] "STARTing cell.. 179 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.21 -0.295 -0.424 -0.447 -0.477 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 179"
[1] "ENDing cell.. 179 With feature... Spreading"
[1] "STARTing cell.. 167 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.1408 -0.0553 -0.0532 -0.1047 -0.1007 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 167"
[1] "ENDing cell.. 167 With feature... Spreading"
[1] "STARTing cell.. 252 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.09743 0.06553 0.037 -0.00414 -0.15501 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 252"
[1] "ENDing cell.. 252 With feature... Spreading"
[1] "STARTing cell.. 81 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.264 -0.326 -0.221 -0.069 -0.157 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 81"
[1] "ENDing cell.. 81 With feature... Spreading"
[1] "STARTing cell.. 14 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.1229 -0.0122 0.0711 0.1282 0.2114 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 14"
[1] "ENDing cell.. 14 With feature... Spreading"
[1] "STARTing cell.. 199 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0184 0.0387 -0.0339 -0.0459 -0.1441 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 199"
[1] "ENDing cell.. 199 With feature... Spreading"
[1] "STARTing cell.. 266 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.126 -0.137 -0.181 -0.229 -0.104 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 266"
[1] "ENDing cell.. 266 With feature... Spreading"
[1] "STARTing cell.. 116 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0588 0.1047 0.0184 0.1339 0.1562 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 116"
[1] "ENDing cell.. 116 With feature... Spreading"
[1] "STARTing cell.. 176 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.19 -0.257 -0.177 -0.139 -0.322 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 176"
[1] "ENDing cell.. 176 With feature... Spreading"
[1] "STARTing cell.. 235 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.02306 0.0188 0.00165 -0.00112 -0.13314 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 235"
[1] "ENDing cell.. 235 With feature... Spreading"
[1] "STARTing cell.. 38 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.14244 -0.07033 0.00331 -0.13645 -0.17401 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 38"
[1] "ENDing cell.. 38 With feature... Spreading"
[1] "STARTing cell.. 105 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.03264 -0.00804 0.02373 0.04574 0.0662 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 105"
[1] "ENDing cell.. 105 With feature... Spreading"
[1] "STARTing cell.. 193 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.207 -0.241 -0.243 -0.2 -0.262 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 193"
[1] "ENDing cell.. 193 With feature... Spreading"
[1] "STARTing cell.. 181 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.216 0.23 0.256 0.374 0.41 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 181"
[1] "ENDing cell.. 181 With feature... Spreading"
[1] "STARTing cell.. 28 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.534 -0.529 -0.521 -0.485 -0.472 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 28"
[1] "ENDing cell.. 28 With feature... Spreading"
[1] "STARTing cell.. 98 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.4401 0.3961 0.2326 0.1573 -0.0305 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 98"
[1] "ENDing cell.. 98 With feature... Spreading"
[1] "STARTing cell.. 200 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.1385 -0.0699 0.0615 0.1123 0.1652 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 200"
[1] "ENDing cell.. 200 With feature... Spreading"
[1] "STARTing cell.. 209 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.1257 0.0707 0.0362 0.0344 0.1052 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 209"
[1] "ENDing cell.. 209 With feature... Spreading"
[1] "STARTing cell.. 278 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.142 0.214 0.264 0.328 0.334 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 278"
[1] "ENDing cell.. 278 With feature... Spreading"
[1] "STARTing cell.. 75 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0345 0.0317 0.0435 0.1119 0.18 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 75"
[1] "ENDing cell.. 75 With feature... Spreading"
[1] "STARTing cell.. 141 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0732 -0.1183 -0.165 -0.1619 -0.1797 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 141"
[1] "ENDing cell.. 141 With feature... Spreading"
[1] "STARTing cell.. 259 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0309 0.03537 -0.22728 -0.07974 -0.00895 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 259"
[1] "ENDing cell.. 259 With feature... Spreading"
[1] "STARTing cell.. 16 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.14 -0.229 -0.333 -0.474 -0.395 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 16"
[1] "ENDing cell.. 16 With feature... Spreading"
[1] "STARTing cell.. 267 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0106 0.0681 0.154 0.153 0.0707 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 267"
[1] "ENDing cell.. 267 With feature... Spreading"
[1] "STARTing cell.. 201 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.1249 -0.0478 -0.1613 -0.1204 -0.1753 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 201"
[1] "ENDing cell.. 201 With feature... Spreading"
[1] "STARTing cell.. 117 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.3079 -0.2193 -0.0958 -0.0293 -0.0876 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 117"
[1] "ENDing cell.. 117 With feature... Spreading"
[1] "STARTing cell.. 177 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.104 0.179 0.145 0.255 0.378 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 177"
[1] "ENDing cell.. 177 With feature... Spreading"
[1] "STARTing cell.. 15 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0504 0.1306 0.2427 0.3288 0.5084 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 15"
[1] "ENDing cell.. 15 With feature... Spreading"
[1] "STARTing cell.. 106 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.07848 -0.00794 0.06629 0.15917 0.28316 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 106"
[1] "ENDing cell.. 106 With feature... Spreading"
[1] "STARTing cell.. 194 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.411 0.347 0.295 0.231 0.147 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 194"
[1] "ENDing cell.. 194 With feature... Spreading"
[1] "STARTing cell.. 31 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.165 -0.18 -0.193 -0.189 -0.152 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 31"
[1] "ENDing cell.. 31 With feature... Spreading"
[1] "STARTing cell.. 77 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.439 -0.486 -0.511 -0.582 -0.648 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 77"
[1] "ENDing cell.. 77 With feature... Spreading"
[1] "STARTing cell.. 91 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.08264 -0.03378 0.00439 -0.01005 0.05424 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 91"
[1] "ENDing cell.. 91 With feature... Spreading"
[1] "STARTing cell.. 142 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0382 -0.0204 -0.1551 -0.2608 -0.2932 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 142"
[1] "ENDing cell.. 142 With feature... Spreading"
[1] "STARTing cell.. 17 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.1241 -0.1578 -0.0846 -0.1073 -0.2184 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 17"
[1] "ENDing cell.. 17 With feature... Spreading"
[1] "STARTing cell.. 62 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.15 0.158 0.181 0.264 0.298 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 62"
[1] "ENDing cell.. 62 With feature... Spreading"
[1] "STARTing cell.. 168 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.246 -0.198 -0.18 -0.242 -0.247 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 168"
[1] "ENDing cell.. 168 With feature... Spreading"
[1] "STARTing cell.. 127 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0203 0.00971 0.01334 -0.05205 -0.15206 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 127"
[1] "ENDing cell.. 127 With feature... Spreading"
[1] "STARTing cell.. 253 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0821 0.1235 0.111 0.2116 0.2089 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 253"
[1] "ENDing cell.. 253 With feature... Spreading"
[1] "STARTing cell.. 118 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0858 0.1186 0.0897 0.1803 0.2521 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 118"
[1] "ENDing cell.. 118 With feature... Spreading"
[1] "STARTing cell.. 39 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.11415 0.12028 0.13016 0.08366 -0.00292 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 39"
[1] "ENDing cell.. 39 With feature... Spreading"
[1] "STARTing cell.. 107 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.05406 0.01739 -0.03391 -0.07592 -0.00461 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 107"
[1] "ENDing cell.. 107 With feature... Spreading"
[1] "STARTing cell.. 196 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.1619 -0.0765 -0.3408 -0.169 -0.2751 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 196"
[1] "ENDing cell.. 196 With feature... Spreading"
[1] "STARTing cell.. 212 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0491 -0.0924 -0.1543 -0.1501 -0.1982 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 212"
[1] "ENDing cell.. 212 With feature... Spreading"
[1] "STARTing cell.. 79 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0989 -0.032 0.0639 0.1463 0.1793 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 79"
[1] "ENDing cell.. 79 With feature... Spreading"
[1] "STARTing cell.. 143 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.1452 -0.1397 -0.1588 -0.1252 -0.0912 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 143"
[1] "ENDing cell.. 143 With feature... Spreading"
[1] "STARTing cell.. 92 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0503 -0.1398 0.032 -0.1664 -0.0278 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 92"
[1] "ENDing cell.. 92 With feature... Spreading"
[1] "STARTing cell.. 169 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.1728 -0.0786 -0.0305 0.1457 0.2303 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 169"
[1] "ENDing cell.. 169 With feature... Spreading"
[1] "STARTing cell.. 254 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.00866 0.04929 -0.01615 0.01818 0.12699 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 254"
[1] "ENDing cell.. 254 With feature... Spreading"
[1] "STARTing cell.. 269 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.02166 -0.10942 -0.00368 -0.02467 -0.05423 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 269"
[1] "ENDing cell.. 269 With feature... Spreading"
[1] "STARTing cell.. 119 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.2964 -0.2152 -0.1438 -0.0358 0.0315 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 119"
[1] "ENDing cell.. 119 With feature... Spreading"
[1] "STARTing cell.. 180 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.2006 0.0706 0.0992 -0.2337 0.0447 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 180"
[1] "ENDing cell.. 180 With feature... Spreading"
[1] "STARTing cell.. 151 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.319 0.392 0.325 0.373 0.427 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 151"
[1] "ENDing cell.. 151 With feature... Spreading"
[1] "STARTing cell.. 40 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.049328 0.000203 0.083584 0.135254 0.130846 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 40"
[1] "ENDing cell.. 40 With feature... Spreading"
[1] "STARTing cell.. 191 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.098 0.161 0.214 0.23 0.205 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 191"
[1] "ENDing cell.. 191 With feature... Spreading"
[1] "STARTing cell.. 108 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.124 -0.136 -0.205 -0.31 -0.344 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 108"
[1] "ENDing cell.. 108 With feature... Spreading"
[1] "STARTing cell.. 198 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0463 -0.0556 -0.0978 -0.1021 -0.0755 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 198"
[1] "ENDing cell.. 198 With feature... Spreading"
[1] "STARTing cell.. 144 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0883 -0.1228 0.0116 -0.0464 -0.1786 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 144"
[1] "ENDing cell.. 144 With feature... Spreading"
[1] "STARTing cell.. 170 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.237 -0.334 -0.396 -0.405 -0.399 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 170"
[1] "ENDing cell.. 170 With feature... Spreading"
[1] "STARTing cell.. 270 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.20498 -0.03124 -0.00699 0.25952 0.44325 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 270"
[1] "ENDing cell.. 270 With feature... Spreading"
[1] "STARTing cell.. 41 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0365 0.0448 -0.0579 0.0603 -0.0269 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 41"
[1] "ENDing cell.. 41 With feature... Spreading"
[1] "STARTing cell.. 154 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.164603 -0.068267 0.000713 -0.106054 -0.092173 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 154"
[1] "ENDing cell.. 154 With feature... Spreading"
[1] "STARTing cell.. 90 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.1317 -0.1128 -0.0151 0.1084 0.0435 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 90"
[1] "ENDing cell.. 90 With feature... Spreading"
[1] "STARTing cell.. 145 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.1205 0.0547 -0.015 -0.0312 -0.0716 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 145"
[1] "ENDing cell.. 145 With feature... Spreading"
[1] "STARTing cell.. 271 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.283 0.371 0.436 0.498 0.524 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 271"
[1] "ENDing cell.. 271 With feature... Spreading"
[1] "STARTing cell.. 183 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0424 0.0971 0.0535 0.0595 0.1142 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 183"
[1] "ENDing cell.. 183 With feature... Spreading"
[1] "STARTing cell.. 147 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.00544 -0.10455 -0.18504 -0.19738 -0.18328 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 147"
[1] "ENDing cell.. 147 With feature... Spreading"
[1] "STARTing cell.. 178 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.1422 0.0733 0.0395 0.0541 -0.0515 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 178"
[1] "ENDing cell.. 178 With feature... Spreading"
[1] "STARTing cell.. 272 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.328 -0.299 -0.108 -0.163 -0.149 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 272"
[1] "ENDing cell.. 272 With feature... Spreading"
[1] "STARTing cell.. 43 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0166 0.0864 0.163 0.2409 0.2322 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 43"
[1] "ENDing cell.. 43 With feature... Spreading"
[1] "STARTing cell.. 99 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.302 0.289 0.341 0.41 0.431 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 99"
[1] "ENDing cell.. 99 With feature... Spreading"
[1] "STARTing cell.. 155 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.213 0.2347 0.0339 0.1153 0.0225 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 155"
[1] "ENDing cell.. 155 With feature... Spreading"
[1] "STARTing cell.. 148 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.02546 0.00861 0.05288 0.00677 0.02978 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 148"
[1] "ENDing cell.. 148 With feature... Spreading"
[1] "STARTing cell.. 215 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0444 0.1181 0.1672 0.2417 0.2582 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 215"
[1] "ENDing cell.. 215 With feature... Spreading"
[1] "STARTing cell.. 149 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.2796 -0.0849 -0.1768 -0.1206 -0.2188 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 149"
[1] "ENDing cell.. 149 With feature... Spreading"
[1] "STARTing cell.. 89 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0253 -0.0457 0.0624 0.2027 0.2436 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 89"
[1] "ENDing cell.. 89 With feature... Spreading"
[1] "STARTing cell.. 156 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0379 0.0356 0.1061 0.0699 0.1125 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 156"
[1] "ENDing cell.. 156 With feature... Spreading"
[1] "STARTing cell.. 150 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.06149 0.07213 0.06049 -0.00729 -0.07628 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 150"
[1] "ENDing cell.. 150 With feature... Spreading"
[1] "STARTing cell.. 42 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.2 -0.19 -0.251 -0.256 -0.149 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 42"
[1] "ENDing cell.. 42 With feature... Spreading"
[1] "STARTing cell.. 44 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.1 0.19 0.236 0.224 0.206 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 44"
[1] "ENDing cell.. 44 With feature... Spreading"
[1] "STARTing cell.. 100 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.04168 -0.00633 0.12868 0.00786 -0.16648 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 100"
[1] "ENDing cell.. 100 With feature... Spreading"
[1] "STARTing cell.. 153 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.446 0.527 0.517 0.53 0.54 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 153"
[1] "ENDing cell.. 153 With feature... Spreading"
[1] "STARTing cell.. 47 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.1206 -0.0215 -0.0389 0.1489 0.1342 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 47"
[1] "ENDing cell.. 47 With feature... Spreading"
[1] "STARTing cell.. 202 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.1272 -0.126 -0.0946 -0.0457 0.1585 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 202"
[1] "ENDing cell.. 202 With feature... Spreading"
[1] "STARTing cell.. 51 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0665 0.2641 0.376 0.4433 0.5246 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 51"
[1] "ENDing cell.. 51 With feature... Spreading"
[1] "STARTing cell.. 260 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.248 0.281 0.312 0.34 0.314 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 260"
[1] "ENDing cell.. 260 With feature... Spreading"
[1] "STARTing cell.. 217 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.22149 0.20567 0.16869 0.04798 0.00998 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 217"
[1] "ENDing cell.. 217 With feature... Spreading"
[1] "STARTing cell.. 182 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.115 -0.097 -0.11 -0.176 -0.117 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 182"
[1] "ENDing cell.. 182 With feature... Spreading"
[1] "STARTing cell.. 184 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.2 0.261 0.315 0.371 0.406 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 184"
[1] "ENDing cell.. 184 With feature... Spreading"
[1] "STARTing cell.. 45 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.2803 -0.1871 -0.1661 -0.0446 -0.0971 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 45"
[1] "ENDing cell.. 45 With feature... Spreading"
[1] "STARTing cell.. 241 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.14 0.182 0.157 0.199 0.2 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 241"
[1] "ENDing cell.. 241 With feature... Spreading"
[1] "STARTing cell.. 82 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.338 -0.287 -0.322 -0.176 -0.051 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 82"
[1] "ENDing cell.. 82 With feature... Spreading"
[1] "STARTing cell.. 261 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0396 -0.0163 -0.056 -0.1205 -0.0615 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 261"
[1] "ENDing cell.. 261 With feature... Spreading"
[1] "STARTing cell.. 262 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.07093 0.02262 0.04421 -0.00404 -0.07114 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 262"
[1] "ENDing cell.. 262 With feature... Spreading"
[1] "STARTing cell.. 216 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.2223 0.1756 0.3079 0.0938 0.1252 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 216"
[1] "ENDing cell.. 216 With feature... Spreading"
[1] "STARTing cell.. 66 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0902 0.0135 0.286 -0.0348 -0.3658 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 66"
[1] "ENDing cell.. 66 With feature... Spreading"
[1] "STARTing cell.. 128 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0377 0.0417 0.0107 0.0529 -0.0085 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 128"
[1] "ENDing cell.. 128 With feature... Spreading"
[1] "STARTing cell.. 50 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0381 0.288 -0.0159 0.0731 0.136 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 50"
[1] "ENDing cell.. 50 With feature... Spreading"
[1] "STARTing cell.. 5 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0633 -0.0376 0.1514 0.1379 0.1475 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 5"
[1] "ENDing cell.. 5 With feature... Spreading"
[1] "STARTing cell.. 26 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.106 0.0402 -0.0567 -0.0104 -0.0252 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 26"
[1] "ENDing cell.. 26 With feature... Spreading"
[1] "STARTing cell.. 129 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.00341 0.04685 0.10239 0.06566 0.01506 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 129"
[1] "ENDing cell.. 129 With feature... Spreading"
[1] "STARTing cell.. 67 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.00118 -0.09273 -0.0751 -0.03179 -0.10858 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 67"
[1] "ENDing cell.. 67 With feature... Spreading"
[1] "STARTing cell.. 247 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.1772 0.2072 0.1485 0.1623 -0.0393 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 247"
[1] "ENDing cell.. 247 With feature... Spreading"
[1] "STARTing cell.. 134 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.261 0.269 0.183 0.242 0.235 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 134"
[1] "ENDing cell.. 134 With feature... Spreading"
[1] "STARTing cell.. 93 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0663 0.0698 -0.0111 -0.0875 -0.2135 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 93"
[1] "ENDing cell.. 93 With feature... Spreading"
[1] "STARTing cell.. 248 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.14589 -0.03778 -0.00188 0.06091 0.12609 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 248"
[1] "ENDing cell.. 248 With feature... Spreading"
[1] "STARTing cell.. 157 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.07953 -0.08018 -0.06394 -0.00721 -0.04391 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 157"
[1] "ENDing cell.. 157 With feature... Spreading"
[1] "STARTing cell.. 46 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.224 0.275 0.367 0.51 0.48 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 46"
[1] "ENDing cell.. 46 With feature... Spreading"
[1] "STARTing cell.. 242 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0166 0.2359 0.1799 0.1993 0.124 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 242"
[1] "ENDing cell.. 242 With feature... Spreading"
[1] "STARTing cell.. 159 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0432 0.011 0.0426 0.2095 0.1647 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 159"
[1] "ENDing cell.. 159 With feature... Spreading"
[1] "STARTing cell.. 186 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.00419 0.42181 -0.13676 -0.05836 -0.07643 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 186"
[1] "ENDing cell.. 186 With feature... Spreading"
[1] "STARTing cell.. 228 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.204 -0.366 -0.315 -0.325 -0.363 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 228"
[1] "ENDing cell.. 228 With feature... Spreading"
[1] "STARTing cell.. 160 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.622 -0.58 -0.456 -0.43 -0.313 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 160"
[1] "ENDing cell.. 160 With feature... Spreading"
[1] "STARTing cell.. 279 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0908 0.0016 0.0792 0.1704 0.2082 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 279"
[1] "ENDing cell.. 279 With feature... Spreading"
[1] "STARTing cell.. 53 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0675 0.2233 0.0924 0.1048 0.0625 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 53"
[1] "ENDing cell.. 53 With feature... Spreading"
[1] "STARTing cell.. 94 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.14313 0.20169 0.09948 0.08628 -0.00615 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 94"
[1] "ENDing cell.. 94 With feature... Spreading"
[1] "STARTing cell.. 121 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.00678 0.15631 0.26698 0.2484 0.23922 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 121"
[1] "ENDing cell.. 121 With feature... Spreading"
[1] "STARTing cell.. 213 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.11 0.194 0.263 0.318 0.463 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 213"
[1] "ENDing cell.. 213 With feature... Spreading"
[1] "STARTing cell.. 109 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.2527 -0.3127 -0.3211 -0.1978 -0.0807 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 109"
[1] "ENDing cell.. 109 With feature... Spreading"
[1] "STARTing cell.. 110 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.1353 0.0409 0.2365 0.1299 0.0653 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 110"
[1] "ENDing cell.. 110 With feature... Spreading"
[1] "STARTing cell.. 101 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.00579 -0.05218 -0.09365 -0.18782 -0.3019 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 101"
[1] "ENDing cell.. 101 With feature... Spreading"
[1] "STARTing cell.. 187 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.0875 -0.1643 -0.3209 -0.3786 -0.426 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 187"
[1] "ENDing cell.. 187 With feature... Spreading"
[1] "STARTing cell.. 263 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.0991 0.0755 0.1976 0.145 0.156 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 263"
[1] "ENDing cell.. 263 With feature... Spreading"
[1] "STARTing cell.. 218 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] -0.1229 -0.0581 0.045 0.1732 0.1966 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 218"
[1] "ENDing cell.. 218 With feature... Spreading"
[1] "STARTing cell.. 19 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.31 0.356 0.289 0.271 0.315 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 19"
[1] "ENDing cell.. 19 With feature... Spreading"
[1] "STARTing cell.. 20 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.1238 0.1693 0.122 0.0495 0.0616 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 20"
[1] "ENDing cell.. 20 With feature... Spreading"
[1] "STARTing cell.. 224 With feature... Spreading"
List of 6
$ acf : num [1:27, 1, 1] 0.2714 0.2551 0.0636 -0.1025 -0.2759 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 224"
[1] "ENDing cell.. 224 With feature... Spreading"
[1] "STARTing cell.. 219 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.213 0.107 0.11 0.132 -0.14 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 219"
[1] "ENDing cell.. 219 With feature... Protrusivity"
[1] "STARTing cell.. 264 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.00638 0.09596 0.12921 0.35889 0.34816 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 264"
[1] "ENDing cell.. 264 With feature... Protrusivity"
[1] "STARTing cell.. 136 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.0556 -0.0279 0.1408 0.2311 0.2869 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 136"
[1] "ENDing cell.. 136 With feature... Protrusivity"
[1] "STARTing cell.. 54 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.000659 -0.131071 -0.257416 -0.242122 -0.138223 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 54"
[1] "ENDing cell.. 54 With feature... Protrusivity"
[1] "STARTing cell.. 69 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1868 0.2115 0.1266 0.1268 0.0516 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 69"
[1] "ENDing cell.. 69 With feature... Protrusivity"
[1] "STARTing cell.. 111 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.266 0.277 0.27 0.218 0.214 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 111"
[1] "ENDing cell.. 111 With feature... Protrusivity"
[1] "STARTing cell.. 189 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1047 0.0954 0.1115 0.1707 0.1688 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 189"
[1] "ENDing cell.. 189 With feature... Protrusivity"
[1] "STARTing cell.. 171 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.098 -0.022 -0.0259 0.0663 0.0257 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 171"
[1] "ENDing cell.. 171 With feature... Protrusivity"
[1] "STARTing cell.. 231 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.13206 0.02163 -0.15951 -0.08357 0.00985 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 231"
[1] "ENDing cell.. 231 With feature... Protrusivity"
[1] "STARTing cell.. 205 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0856 0.2025 0.0554 0.1082 0.3628 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 205"
[1] "ENDing cell.. 205 With feature... Protrusivity"
[1] "STARTing cell.. 244 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.1789 -0.2129 -0.0765 -0.0856 -0.077 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 244"
[1] "ENDing cell.. 244 With feature... Protrusivity"
[1] "STARTing cell.. 1 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.223 0.124 0.234 0.236 0.163 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 1"
[1] "ENDing cell.. 1 With feature... Protrusivity"
[1] "STARTing cell.. 36 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.101 -0.172 -0.313 -0.39 -0.438 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 36"
[1] "ENDing cell.. 36 With feature... Protrusivity"
[1] "STARTing cell.. 7 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.136 0.168 0.123 0.236 0.211 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 7"
[1] "ENDing cell.. 7 With feature... Protrusivity"
[1] "STARTing cell.. 102 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.284 0.222 0.169 0.128 0.137 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 102"
[1] "ENDing cell.. 102 With feature... Protrusivity"
[1] "STARTing cell.. 22 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.128 -0.1659 -0.1449 -0.1087 0.0217 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 22"
[1] "ENDing cell.. 22 With feature... Protrusivity"
[1] "STARTing cell.. 188 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.0698 -0.0859 -0.2112 -0.1404 -0.1306 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 188"
[1] "ENDing cell.. 188 With feature... Protrusivity"
[1] "STARTing cell.. 55 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1203 0.1125 0.0369 0.0767 0.1444 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 55"
[1] "ENDing cell.. 55 With feature... Protrusivity"
[1] "STARTing cell.. 243 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1572 0.0346 0.1232 -0.0657 -0.232 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 243"
[1] "ENDing cell.. 243 With feature... Protrusivity"
[1] "STARTing cell.. 123 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.098 0.2902 0.0587 0.2761 0.3614 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 123"
[1] "ENDing cell.. 123 With feature... Protrusivity"
[1] "STARTing cell.. 21 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.657 -0.553 -0.41 -0.348 -0.252 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 21"
[1] "ENDing cell.. 21 With feature... Protrusivity"
[1] "STARTing cell.. 163 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.295 -0.363 -0.342 -0.323 -0.254 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 163"
[1] "ENDing cell.. 163 With feature... Protrusivity"
[1] "STARTing cell.. 112 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1 -0.078 -0.126 -0.179 -0.267 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 112"
[1] "ENDing cell.. 112 With feature... Protrusivity"
[1] "STARTing cell.. 33 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.0639 -0.0738 -0.0242 -0.1489 -0.1397 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 33"
[1] "ENDing cell.. 33 With feature... Protrusivity"
[1] "STARTing cell.. 172 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.26269 0.19017 -0.00261 -0.12111 -0.20446 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 172"
[1] "ENDing cell.. 172 With feature... Protrusivity"
[1] "STARTing cell.. 95 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.323 0.355 0.231 0.294 0.178 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 95"
[1] "ENDing cell.. 95 With feature... Protrusivity"
[1] "STARTing cell.. 30 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.0389 0.0917 -0.0142 -0.1249 -0.215 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 30"
[1] "ENDing cell.. 30 With feature... Protrusivity"
[1] "STARTing cell.. 203 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1506 -0.07338 0.03931 -0.00846 0.04693 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 203"
[1] "ENDing cell.. 203 With feature... Protrusivity"
[1] "STARTing cell.. 274 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.0707 -0.0683 -0.053 -0.0843 -0.0561 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 274"
[1] "ENDing cell.. 274 With feature... Protrusivity"
[1] "STARTing cell.. 131 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.2008 0.0801 -0.1261 -0.0849 -0.3293 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 131"
[1] "ENDing cell.. 131 With feature... Protrusivity"
[1] "STARTing cell.. 68 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.10096 -0.14293 -0.11117 -0.1551 -0.00681 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 68"
[1] "ENDing cell.. 68 With feature... Protrusivity"
[1] "STARTing cell.. 71 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.00892 -0.07198 -0.06609 -0.05564 -0.19908 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 71"
[1] "ENDing cell.. 71 With feature... Protrusivity"
[1] "STARTing cell.. 135 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.198 -0.236 -0.254 -0.193 -0.14 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 135"
[1] "ENDing cell.. 135 With feature... Protrusivity"
[1] "STARTing cell.. 84 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.146 -0.0171 0.0781 0.0658 0.2106 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 84"
[1] "ENDing cell.. 84 With feature... Protrusivity"
[1] "STARTing cell.. 206 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.318 0.289 0.336 0.359 0.371 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 206"
[1] "ENDing cell.. 206 With feature... Protrusivity"
[1] "STARTing cell.. 255 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.07122 -0.07091 -0.00857 -0.04693 -0.13586 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 255"
[1] "ENDing cell.. 255 With feature... Protrusivity"
[1] "STARTing cell.. 64 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.0397 0.2178 0.0264 0.183 0.1366 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 64"
[1] "ENDing cell.. 64 With feature... Protrusivity"
[1] "STARTing cell.. 9 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.224 -0.1215 -0.1384 0.1507 -0.0272 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 9"
[1] "ENDing cell.. 9 With feature... Protrusivity"
[1] "STARTing cell.. 122 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.176 -0.105 0.102 0.123 0.238 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 122"
[1] "ENDing cell.. 122 With feature... Protrusivity"
[1] "STARTing cell.. 23 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -7.36e-05 -4.75e-02 -7.51e-02 -1.11e-01 -1.75e-01 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 23"
[1] "ENDing cell.. 23 With feature... Protrusivity"
[1] "STARTing cell.. 162 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1272 0.1407 0.1151 0.0901 0.0676 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 162"
[1] "ENDing cell.. 162 With feature... Protrusivity"
[1] "STARTing cell.. 229 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.093 0.0455 0.0425 -0.0997 -0.0506 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 229"
[1] "ENDing cell.. 229 With feature... Protrusivity"
[1] "STARTing cell.. 57 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.1845 -0.051 0.055 -0.155 0.0181 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 57"
[1] "ENDing cell.. 57 With feature... Protrusivity"
[1] "STARTing cell.. 249 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.1148 -0.1618 0.1992 0.0452 0.0587 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 249"
[1] "ENDing cell.. 249 With feature... Protrusivity"
[1] "STARTing cell.. 125 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1673 0.1442 0.0642 -0.1162 0.064 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 125"
[1] "ENDing cell.. 125 With feature... Protrusivity"
[1] "STARTing cell.. 8 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.138 0.211 0.212 0.206 0.142 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 8"
[1] "ENDing cell.. 8 With feature... Protrusivity"
[1] "STARTing cell.. 165 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.157 0.387 0.161 0.413 0.468 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 165"
[1] "ENDing cell.. 165 With feature... Protrusivity"
[1] "STARTing cell.. 83 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1182 0.1151 0.0299 0.0848 0.0758 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 83"
[1] "ENDing cell.. 83 With feature... Protrusivity"
[1] "STARTing cell.. 113 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0765 0.105 -0.0848 -0.1115 0.1752 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 113"
[1] "ENDing cell.. 113 With feature... Protrusivity"
[1] "STARTing cell.. 220 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0858 -0.0821 -0.0514 -0.1333 -0.2099 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 220"
[1] "ENDing cell.. 220 With feature... Protrusivity"
[1] "STARTing cell.. 174 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1933 0.0737 0.1028 0.2851 0.2812 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 174"
[1] "ENDing cell.. 174 With feature... Protrusivity"
[1] "STARTing cell.. 56 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0691 0.1157 0.0989 0.0497 -0.0329 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 56"
[1] "ENDing cell.. 56 With feature... Protrusivity"
[1] "STARTing cell.. 173 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1276 0.1968 0.1471 0.0604 0.0865 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 173"
[1] "ENDing cell.. 173 With feature... Protrusivity"
[1] "STARTing cell.. 232 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0738 -0.0933 -0.0322 -0.0208 -0.1255 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 232"
[1] "ENDing cell.. 232 With feature... Protrusivity"
[1] "STARTing cell.. 37 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.0789 0.0629 0.0263 0.1003 -0.0213 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 37"
[1] "ENDing cell.. 37 With feature... Protrusivity"
[1] "STARTing cell.. 86 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.0804 -0.2187 -0.2345 -0.2456 -0.2095 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 86"
[1] "ENDing cell.. 86 With feature... Protrusivity"
[1] "STARTing cell.. 103 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.02945 0.02467 0.02358 -0.00319 -0.00398 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 103"
[1] "ENDing cell.. 103 With feature... Protrusivity"
[1] "STARTing cell.. 208 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.331 -0.1145 -0.0772 -0.0181 0.096 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 208"
[1] "ENDing cell.. 208 With feature... Protrusivity"
[1] "STARTing cell.. 190 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.048267 0.099739 0.000721 -0.12614 0.025423 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 190"
[1] "ENDing cell.. 190 With feature... Protrusivity"
[1] "STARTing cell.. 4 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.26 -0.327 -0.492 -0.496 -0.323 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 4"
[1] "ENDing cell.. 4 With feature... Protrusivity"
[1] "STARTing cell.. 238 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0254 0.0494 -0.0991 -0.0188 -0.0699 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 238"
[1] "ENDing cell.. 238 With feature... Protrusivity"
[1] "STARTing cell.. 11 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.0517 -0.1114 -0.1567 0.021 -0.1032 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 11"
[1] "ENDing cell.. 11 With feature... Protrusivity"
[1] "STARTing cell.. 29 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.128 0.162 0.222 0.24 0.222 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 29"
[1] "ENDing cell.. 29 With feature... Protrusivity"
[1] "STARTing cell.. 59 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.15795 0.10808 -0.00381 0.04692 -0.1097 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 59"
[1] "ENDing cell.. 59 With feature... Protrusivity"
[1] "STARTing cell.. 96 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0362 0.2084 0.2105 0.3231 0.3372 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 96"
[1] "ENDing cell.. 96 With feature... Protrusivity"
[1] "STARTing cell.. 204 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.1912 -0.1995 -0.0838 0.0685 -0.0327 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 204"
[1] "ENDing cell.. 204 With feature... Protrusivity"
[1] "STARTing cell.. 275 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.397 0.404 0.455 0.475 0.438 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 275"
[1] "ENDing cell.. 275 With feature... Protrusivity"
[1] "STARTing cell.. 130 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.04262 0.06343 0.1429 0.1205 -0.00222 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 130"
[1] "ENDing cell.. 130 With feature... Protrusivity"
[1] "STARTing cell.. 137 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1172 0.16253 0.05814 0.00724 -0.05735 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 137"
[1] "ENDing cell.. 137 With feature... Protrusivity"
[1] "STARTing cell.. 140 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.172 0.222 0.249 0.309 0.157 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 140"
[1] "ENDing cell.. 140 With feature... Protrusivity"
[1] "STARTing cell.. 226 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.151 -0.193 -0.247 -0.201 -0.216 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 226"
[1] "ENDing cell.. 226 With feature... Protrusivity"
[1] "STARTing cell.. 74 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.324 0.345 0.545 0.506 0.422 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 74"
[1] "ENDing cell.. 74 With feature... Protrusivity"
[1] "STARTing cell.. 256 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.277 0.222 0.228 0.177 0.218 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 256"
[1] "ENDing cell.. 256 With feature... Protrusivity"
[1] "STARTing cell.. 65 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0261 -0.0492 0.0988 0.0545 0.1235 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 65"
[1] "ENDing cell.. 65 With feature... Protrusivity"
[1] "STARTing cell.. 87 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.06187 0.00802 -0.12656 -0.01388 0.00478 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 87"
[1] "ENDing cell.. 87 With feature... Protrusivity"
[1] "STARTing cell.. 124 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.2592 -0.1878 -0.0984 0.0112 0.0981 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 124"
[1] "ENDing cell.. 124 With feature... Protrusivity"
[1] "STARTing cell.. 210 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.0313 -0.0207 0.0934 0.1025 0.1143 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 210"
[1] "ENDing cell.. 210 With feature... Protrusivity"
[1] "STARTing cell.. 164 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.209 -0.118 -0.2173 -0.1648 -0.0346 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 164"
[1] "ENDing cell.. 164 With feature... Protrusivity"
[1] "STARTing cell.. 230 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.246 -0.241 -0.234 -0.268 -0.208 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 230"
[1] "ENDing cell.. 230 With feature... Protrusivity"
[1] "STARTing cell.. 13 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.1256 -0.0919 -0.1441 -0.1379 0.018 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 13"
[1] "ENDing cell.. 13 With feature... Protrusivity"
[1] "STARTing cell.. 250 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.1071 -0.0551 -0.0904 -0.0772 -0.0721 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 250"
[1] "ENDing cell.. 250 With feature... Protrusivity"
[1] "STARTing cell.. 10 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1148 0.0361 0.0671 0.0161 0.1383 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 10"
[1] "ENDing cell.. 10 With feature... Protrusivity"
[1] "STARTing cell.. 85 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.2481 0.0197 0.0648 0.1288 -0.0039 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 85"
[1] "ENDing cell.. 85 With feature... Protrusivity"
[1] "STARTing cell.. 61 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.2248 -0.2371 -0.0574 -0.0966 -0.057 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 61"
[1] "ENDing cell.. 61 With feature... Protrusivity"
[1] "STARTing cell.. 221 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.0747 -0.1073 -0.1465 -0.2397 -0.2511 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 221"
[1] "ENDing cell.. 221 With feature... Protrusivity"
[1] "STARTing cell.. 265 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0756 0.0343 0.0462 0.0652 0.1062 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 265"
[1] "ENDing cell.. 265 With feature... Protrusivity"
[1] "STARTing cell.. 58 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.164 -0.218 -0.317 -0.219 -0.291 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 58"
[1] "ENDing cell.. 58 With feature... Protrusivity"
[1] "STARTing cell.. 114 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.2557 0.1148 -0.0765 -0.056 -0.1499 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 114"
[1] "ENDing cell.. 114 With feature... Protrusivity"
[1] "STARTing cell.. 233 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.00989 -0.10984 -0.04592 -0.1197 0.05938 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 233"
[1] "ENDing cell.. 233 With feature... Protrusivity"
[1] "STARTing cell.. 246 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0718 0.0851 0.1595 0.3065 0.3606 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 246"
[1] "ENDing cell.. 246 With feature... Protrusivity"
[1] "STARTing cell.. 104 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1458 0.1574 0.1385 0.1341 0.0917 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 104"
[1] "ENDing cell.. 104 With feature... Protrusivity"
[1] "STARTing cell.. 76 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0727 0.2918 0.063 0.168 0.2424 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 76"
[1] "ENDing cell.. 76 With feature... Protrusivity"
[1] "STARTing cell.. 239 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1762 -0.0541 -0.1481 0.0282 0.0698 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 239"
[1] "ENDing cell.. 239 With feature... Protrusivity"
[1] "STARTing cell.. 88 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.000701 -0.092761 0.079841 -0.025349 0.015357 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 88"
[1] "ENDing cell.. 88 With feature... Protrusivity"
[1] "STARTing cell.. 211 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.311 0.309 0.287 0.361 0.412 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 211"
[1] "ENDing cell.. 211 With feature... Protrusivity"
[1] "STARTing cell.. 24 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0502 0.0114 0.1179 0.0679 0.1627 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 24"
[1] "ENDing cell.. 24 With feature... Protrusivity"
[1] "STARTing cell.. 276 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.08947 -0.01569 -0.01626 -0.1181 0.00252 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 276"
[1] "ENDing cell.. 276 With feature... Protrusivity"
[1] "STARTing cell.. 115 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.19254 0.1386 -0.00519 0.07993 -0.05678 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 115"
[1] "ENDing cell.. 115 With feature... Protrusivity"
[1] "STARTing cell.. 132 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.225 0.279 0.23 0.222 0.214 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 132"
[1] "ENDing cell.. 132 With feature... Protrusivity"
[1] "STARTing cell.. 138 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.185 0.22 0.18 0.221 0.137 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 138"
[1] "ENDing cell.. 138 With feature... Protrusivity"
[1] "STARTing cell.. 227 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.0402 -0.0783 0.1247 0.1482 0.1177 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 227"
[1] "ENDing cell.. 227 With feature... Protrusivity"
[1] "STARTing cell.. 257 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1355 0.2146 -0.0361 -0.0292 -0.1814 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 257"
[1] "ENDing cell.. 257 With feature... Protrusivity"
[1] "STARTing cell.. 133 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.288 0.266 0.38 0.223 0.391 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 133"
[1] "ENDing cell.. 133 With feature... Protrusivity"
[1] "STARTing cell.. 126 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0584 0.0421 0.164 0.0838 -0.0825 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 126"
[1] "ENDing cell.. 126 With feature... Protrusivity"
[1] "STARTing cell.. 78 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.00321 -0.04982 -0.12837 -0.13411 -0.16451 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 78"
[1] "ENDing cell.. 78 With feature... Protrusivity"
[1] "STARTing cell.. 166 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.019 0.0119 -0.0111 -0.0799 -0.1812 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 166"
[1] "ENDing cell.. 166 With feature... Protrusivity"
[1] "STARTing cell.. 195 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.000634 -0.001809 0.039163 -0.034226 -0.083304 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 195"
[1] "ENDing cell.. 195 With feature... Protrusivity"
[1] "STARTing cell.. 251 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.03856 -0.02362 0.00162 -0.04523 -0.04431 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 251"
[1] "ENDing cell.. 251 With feature... Protrusivity"
[1] "STARTing cell.. 12 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0592 -0.051 -0.0191 -0.2268 -0.1878 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 12"
[1] "ENDing cell.. 12 With feature... Protrusivity"
[1] "STARTing cell.. 222 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.01873 -0.00993 0.09834 0.09732 0.13214 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 222"
[1] "ENDing cell.. 222 With feature... Protrusivity"
[1] "STARTing cell.. 60 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0315 -0.1572 -0.1137 -0.1565 -0.1945 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 60"
[1] "ENDing cell.. 60 With feature... Protrusivity"
[1] "STARTing cell.. 63 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0261 0.0593 0.0083 -0.0519 -0.117 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 63"
[1] "ENDing cell.. 63 With feature... Protrusivity"
[1] "STARTing cell.. 175 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.181 -0.219 -0.203 -0.258 -0.166 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 175"
[1] "ENDing cell.. 175 With feature... Protrusivity"
[1] "STARTing cell.. 234 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.473 -0.439 -0.376 -0.414 -0.279 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 234"
[1] "ENDing cell.. 234 With feature... Protrusivity"
[1] "STARTing cell.. 192 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.249 0.177 0.224 0.22 0.197 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 192"
[1] "ENDing cell.. 192 With feature... Protrusivity"
[1] "STARTing cell.. 240 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.0441 0.1016 -0.0662 0.0729 -0.1925 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 240"
[1] "ENDing cell.. 240 With feature... Protrusivity"
[1] "STARTing cell.. 80 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1497 0.0928 0.0289 0.0715 0.021 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 80"
[1] "ENDing cell.. 80 With feature... Protrusivity"
[1] "STARTing cell.. 97 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.0492 -0.1252 -0.1738 0.0235 0.0723 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 97"
[1] "ENDing cell.. 97 With feature... Protrusivity"
[1] "STARTing cell.. 207 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.1756 -0.1502 -0.2625 -0.1384 -0.0926 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 207"
[1] "ENDing cell.. 207 With feature... Protrusivity"
[1] "STARTing cell.. 277 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.0325 -0.2564 0.2217 0.0598 0.2275 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 277"
[1] "ENDing cell.. 277 With feature... Protrusivity"
[1] "STARTing cell.. 73 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.01588 0.07127 0.00568 0.32413 0.11897 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 73"
[1] "ENDing cell.. 73 With feature... Protrusivity"
[1] "STARTing cell.. 139 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.16791 -0.00421 -0.13447 -0.07807 -0.17994 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 139"
[1] "ENDing cell.. 139 With feature... Protrusivity"
[1] "STARTing cell.. 258 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.265 -0.335 -0.223 -0.23 -0.252 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 258"
[1] "ENDing cell.. 258 With feature... Protrusivity"
[1] "STARTing cell.. 179 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.284 0.307 0.328 0.36 0.316 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 179"
[1] "ENDing cell.. 179 With feature... Protrusivity"
[1] "STARTing cell.. 167 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.1179 -0.0105 -0.0566 0.0136 0.1158 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 167"
[1] "ENDing cell.. 167 With feature... Protrusivity"
[1] "STARTing cell.. 252 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.23 0.219 0.211 0.253 0.298 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 252"
[1] "ENDing cell.. 252 With feature... Protrusivity"
[1] "STARTing cell.. 81 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1991 -0.193 -0.0888 -0.1964 0.0656 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 81"
[1] "ENDing cell.. 81 With feature... Protrusivity"
[1] "STARTing cell.. 14 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0885 0.1467 0.2392 0.2935 0.3099 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 14"
[1] "ENDing cell.. 14 With feature... Protrusivity"
[1] "STARTing cell.. 199 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.03509 -0.03065 -0.02251 0.00942 0.04946 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 199"
[1] "ENDing cell.. 199 With feature... Protrusivity"
[1] "STARTing cell.. 266 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.0307 -0.0427 -0.0907 -0.1342 -0.1694 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 266"
[1] "ENDing cell.. 266 With feature... Protrusivity"
[1] "STARTing cell.. 116 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.1749 -0.0923 -0.2266 -0.0239 0.1442 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 116"
[1] "ENDing cell.. 116 With feature... Protrusivity"
[1] "STARTing cell.. 176 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.09451 0.00966 -0.06739 0.0454 -0.09722 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 176"
[1] "ENDing cell.. 176 With feature... Protrusivity"
[1] "STARTing cell.. 235 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.0139 -0.0663 -0.0411 -0.0194 -0.0308 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 235"
[1] "ENDing cell.. 235 With feature... Protrusivity"
[1] "STARTing cell.. 38 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.0255 -0.0141 -0.1064 -0.0993 -0.2237 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 38"
[1] "ENDing cell.. 38 With feature... Protrusivity"
[1] "STARTing cell.. 105 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.17522 -0.20668 -0.0993 -0.00883 0.02466 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 105"
[1] "ENDing cell.. 105 With feature... Protrusivity"
[1] "STARTing cell.. 193 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.2559 -0.1918 -0.1002 0.0422 0.0399 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 193"
[1] "ENDing cell.. 193 With feature... Protrusivity"
[1] "STARTing cell.. 181 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.1545 -0.0511 -0.0493 -0.0357 -0.0642 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 181"
[1] "ENDing cell.. 181 With feature... Protrusivity"
[1] "STARTing cell.. 28 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1887 0.0446 0.061 0.0767 -0.0246 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 28"
[1] "ENDing cell.. 28 With feature... Protrusivity"
[1] "STARTing cell.. 98 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.327 0.319 0.182 0.161 0.175 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 98"
[1] "ENDing cell.. 98 With feature... Protrusivity"
[1] "STARTing cell.. 200 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.2474 -0.3011 -0.1393 -0.0556 -0.0866 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 200"
[1] "ENDing cell.. 200 With feature... Protrusivity"
[1] "STARTing cell.. 209 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.13007 0.05457 -0.17936 -0.03779 0.00452 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 209"
[1] "ENDing cell.. 209 With feature... Protrusivity"
[1] "STARTing cell.. 278 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.1142 -0.1879 -0.188 -0.0611 -0.0796 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 278"
[1] "ENDing cell.. 278 With feature... Protrusivity"
[1] "STARTing cell.. 75 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1178 0.1024 0.1406 -0.0488 0.0847 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 75"
[1] "ENDing cell.. 75 With feature... Protrusivity"
[1] "STARTing cell.. 141 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0439 -0.0329 -0.0478 0.0575 0.0286 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 141"
[1] "ENDing cell.. 141 With feature... Protrusivity"
[1] "STARTing cell.. 259 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.09039 0.18977 0.00492 0.15511 -0.09524 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 259"
[1] "ENDing cell.. 259 With feature... Protrusivity"
[1] "STARTing cell.. 16 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1188 0.1048 0.1018 0.0928 0.1582 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 16"
[1] "ENDing cell.. 16 With feature... Protrusivity"
[1] "STARTing cell.. 267 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.0976 -0.1712 -0.1573 -0.095 -0.1581 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 267"
[1] "ENDing cell.. 267 With feature... Protrusivity"
[1] "STARTing cell.. 201 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1338 0.0347 0.2246 -0.0594 0.1582 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 201"
[1] "ENDing cell.. 201 With feature... Protrusivity"
[1] "STARTing cell.. 117 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.357 -0.383 -0.341 -0.395 -0.423 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 117"
[1] "ENDing cell.. 117 With feature... Protrusivity"
[1] "STARTing cell.. 177 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.1188 0.0471 -0.0479 0.0841 0.1322 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 177"
[1] "ENDing cell.. 177 With feature... Protrusivity"
[1] "STARTing cell.. 15 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.258 -0.14 -0.194 -0.221 -0.178 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 15"
[1] "ENDing cell.. 15 With feature... Protrusivity"
[1] "STARTing cell.. 106 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0203 0.047 0.1353 0.184 0.3412 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 106"
[1] "ENDing cell.. 106 With feature... Protrusivity"
[1] "STARTing cell.. 194 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.186 -0.106 -0.128 -0.111 0.157 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 194"
[1] "ENDing cell.. 194 With feature... Protrusivity"
[1] "STARTing cell.. 31 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0935 0.0782 0.0985 -0.0764 -0.0415 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 31"
[1] "ENDing cell.. 31 With feature... Protrusivity"
[1] "STARTing cell.. 77 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.2006 -0.1708 -0.0762 -0.0559 -0.1592 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 77"
[1] "ENDing cell.. 77 With feature... Protrusivity"
[1] "STARTing cell.. 91 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.102 0.105 0.222 0.159 0.091 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 91"
[1] "ENDing cell.. 91 With feature... Protrusivity"
[1] "STARTing cell.. 142 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.051583 -0.029546 0.026783 0.000489 0.002135 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 142"
[1] "ENDing cell.. 142 With feature... Protrusivity"
[1] "STARTing cell.. 17 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.1307 -0.14576 -0.13717 -0.00604 0.14302 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 17"
[1] "ENDing cell.. 17 With feature... Protrusivity"
[1] "STARTing cell.. 62 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1713 0.091 0.1242 0.0158 0.0244 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 62"
[1] "ENDing cell.. 62 With feature... Protrusivity"
[1] "STARTing cell.. 168 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.409 -0.318 -0.321 -0.237 -0.261 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 168"
[1] "ENDing cell.. 168 With feature... Protrusivity"
[1] "STARTing cell.. 127 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.143 -0.288 -0.32 -0.482 -0.512 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 127"
[1] "ENDing cell.. 127 With feature... Protrusivity"
[1] "STARTing cell.. 253 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.1343 -0.0388 -0.0241 0.0398 0.1187 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 253"
[1] "ENDing cell.. 253 With feature... Protrusivity"
[1] "STARTing cell.. 118 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.01234 0.0428 -0.22699 0.09015 -0.00544 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 118"
[1] "ENDing cell.. 118 With feature... Protrusivity"
[1] "STARTing cell.. 39 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1384 0.1738 0.0337 0.1424 0.1482 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 39"
[1] "ENDing cell.. 39 With feature... Protrusivity"
[1] "STARTing cell.. 107 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.0119 -0.0395 -0.1258 -0.0775 -0.1502 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 107"
[1] "ENDing cell.. 107 With feature... Protrusivity"
[1] "STARTing cell.. 196 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0159 0.0929 -0.0462 -0.0634 -0.0565 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 196"
[1] "ENDing cell.. 196 With feature... Protrusivity"
[1] "STARTing cell.. 212 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.138501 -0.128985 -0.020794 0.000181 0.088036 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 212"
[1] "ENDing cell.. 212 With feature... Protrusivity"
[1] "STARTing cell.. 79 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.164 -0.103 -0.195 -0.169 -0.311 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 79"
[1] "ENDing cell.. 79 With feature... Protrusivity"
[1] "STARTing cell.. 143 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.0383 -0.0283 -0.0327 -0.0129 0.0285 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 143"
[1] "ENDing cell.. 143 With feature... Protrusivity"
[1] "STARTing cell.. 92 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1284 0.121 0.1118 0.0994 0.0331 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 92"
[1] "ENDing cell.. 92 With feature... Protrusivity"
[1] "STARTing cell.. 169 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1674 0.1384 0.0306 -0.0421 -0.1786 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 169"
[1] "ENDing cell.. 169 With feature... Protrusivity"
[1] "STARTing cell.. 254 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.0596 -0.0533 0.0368 -0.0912 -0.0275 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 254"
[1] "ENDing cell.. 254 With feature... Protrusivity"
[1] "STARTing cell.. 269 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.015916 -0.000815 -0.060903 0.029876 -0.052954 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 269"
[1] "ENDing cell.. 269 With feature... Protrusivity"
[1] "STARTing cell.. 119 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.00846 0.02803 0.11573 0.10837 0.08237 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 119"
[1] "ENDing cell.. 119 With feature... Protrusivity"
[1] "STARTing cell.. 180 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0759 0.12115 0.13496 -0.00473 -0.02719 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 180"
[1] "ENDing cell.. 180 With feature... Protrusivity"
[1] "STARTing cell.. 151 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.1781 -0.0969 -0.2682 -0.2412 -0.3361 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 151"
[1] "ENDing cell.. 151 With feature... Protrusivity"
[1] "STARTing cell.. 40 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.236 -0.206 -0.197 -0.225 -0.148 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 40"
[1] "ENDing cell.. 40 With feature... Protrusivity"
[1] "STARTing cell.. 191 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.4176 -0.3158 -0.1462 0.1151 -0.0641 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 191"
[1] "ENDing cell.. 191 With feature... Protrusivity"
[1] "STARTing cell.. 108 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.256 0.241 0.356 0.289 0.318 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 108"
[1] "ENDing cell.. 108 With feature... Protrusivity"
[1] "STARTing cell.. 198 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.0828 0.1393 0.0565 -0.1147 0.0754 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 198"
[1] "ENDing cell.. 198 With feature... Protrusivity"
[1] "STARTing cell.. 144 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.10213 0.0411 0.04717 -0.05687 0.00588 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 144"
[1] "ENDing cell.. 144 With feature... Protrusivity"
[1] "STARTing cell.. 170 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0241 0.0385 0.1905 0.1897 0.2378 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 170"
[1] "ENDing cell.. 170 With feature... Protrusivity"
[1] "STARTing cell.. 270 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.0973 -0.2988 -0.1655 0.0209 0.1338 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 270"
[1] "ENDing cell.. 270 With feature... Protrusivity"
[1] "STARTing cell.. 41 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.048913 -0.104089 -0.14679 -0.000316 -0.055407 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 41"
[1] "ENDing cell.. 41 With feature... Protrusivity"
[1] "STARTing cell.. 154 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.01146 0.0091 -0.00761 -0.03133 -0.07714 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 154"
[1] "ENDing cell.. 154 With feature... Protrusivity"
[1] "STARTing cell.. 90 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.309 -0.315 -0.202 -0.178 -0.19 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 90"
[1] "ENDing cell.. 90 With feature... Protrusivity"
[1] "STARTing cell.. 145 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0167 -0.0348 -0.0579 -0.0507 -0.0619 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 145"
[1] "ENDing cell.. 145 With feature... Protrusivity"
[1] "STARTing cell.. 271 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0402 0.0907 -0.064 -0.1847 0.0388 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 271"
[1] "ENDing cell.. 271 With feature... Protrusivity"
[1] "STARTing cell.. 183 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.03907 -0.00536 -0.0255 0.00406 0.00565 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 183"
[1] "ENDing cell.. 183 With feature... Protrusivity"
[1] "STARTing cell.. 147 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.133 0.128 0.217 0.179 0.262 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 147"
[1] "ENDing cell.. 147 With feature... Protrusivity"
[1] "STARTing cell.. 178 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.2797 0.1954 -0.018 -0.1464 -0.0416 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 178"
[1] "ENDing cell.. 178 With feature... Protrusivity"
[1] "STARTing cell.. 272 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1857 -0.1471 -0.1152 -0.0931 0.0294 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 272"
[1] "ENDing cell.. 272 With feature... Protrusivity"
[1] "STARTing cell.. 43 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1031 0.0295 0.163 0.3664 0.3889 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 43"
[1] "ENDing cell.. 43 With feature... Protrusivity"
[1] "STARTing cell.. 99 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.0742 0.0936 0.1055 0.2397 0.1736 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 99"
[1] "ENDing cell.. 99 With feature... Protrusivity"
[1] "STARTing cell.. 155 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.15778 0.24381 0.00265 -0.12952 0.17462 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 155"
[1] "ENDing cell.. 155 With feature... Protrusivity"
[1] "STARTing cell.. 148 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0272 0.0695 0.0187 0.0645 -0.0312 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 148"
[1] "ENDing cell.. 148 With feature... Protrusivity"
[1] "STARTing cell.. 215 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.27764 -0.21833 -0.2386 -0.04622 0.00166 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 215"
[1] "ENDing cell.. 215 With feature... Protrusivity"
[1] "STARTing cell.. 149 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1539 0.2864 0.2146 0.1255 -0.0788 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 149"
[1] "ENDing cell.. 149 With feature... Protrusivity"
[1] "STARTing cell.. 89 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0782 0.0294 -0.02 -0.066 -0.0718 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 89"
[1] "ENDing cell.. 89 With feature... Protrusivity"
[1] "STARTing cell.. 156 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.0152 -0.1381 -0.1124 -0.0115 -0.1062 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 156"
[1] "ENDing cell.. 156 With feature... Protrusivity"
[1] "STARTing cell.. 150 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.2418 0.141 0.0974 0.1162 -0.1026 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 150"
[1] "ENDing cell.. 150 With feature... Protrusivity"
[1] "STARTing cell.. 42 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.10576 -0.01246 -0.00265 -0.08202 -0.21263 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 42"
[1] "ENDing cell.. 42 With feature... Protrusivity"
[1] "STARTing cell.. 44 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.1262 -0.1683 -0.0834 -0.0711 -0.0515 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 44"
[1] "ENDing cell.. 44 With feature... Protrusivity"
[1] "STARTing cell.. 100 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0808 0.3884 0.0491 0.178 0.1821 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 100"
[1] "ENDing cell.. 100 With feature... Protrusivity"
[1] "STARTing cell.. 153 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.187 0.163 0.148 0.153 0.17 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 153"
[1] "ENDing cell.. 153 With feature... Protrusivity"
[1] "STARTing cell.. 47 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.007 -0.0591 0.055 0.0369 0.0765 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 47"
[1] "ENDing cell.. 47 With feature... Protrusivity"
[1] "STARTing cell.. 202 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0555 -0.0243 0.218 0.1185 0.3981 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 202"
[1] "ENDing cell.. 202 With feature... Protrusivity"
[1] "STARTing cell.. 51 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.00308 0.06765 0.11465 -0.06492 -0.0174 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 51"
[1] "ENDing cell.. 51 With feature... Protrusivity"
[1] "STARTing cell.. 260 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0659 -0.2133 0.021 -0.2804 -0.2041 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 260"
[1] "ENDing cell.. 260 With feature... Protrusivity"
[1] "STARTing cell.. 217 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0517 0.0354 0.109 0.0786 -0.0315 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 217"
[1] "ENDing cell.. 217 With feature... Protrusivity"
[1] "STARTing cell.. 182 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0595 0.0718 0.0271 0.0484 0.0232 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 182"
[1] "ENDing cell.. 182 With feature... Protrusivity"
[1] "STARTing cell.. 184 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1436 0.1564 -0.0443 0.0891 -0.299 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 184"
[1] "ENDing cell.. 184 With feature... Protrusivity"
[1] "STARTing cell.. 45 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.03778 0.00731 -0.04665 -0.03935 -0.0796 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 45"
[1] "ENDing cell.. 45 With feature... Protrusivity"
[1] "STARTing cell.. 241 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.02599 0.04446 -0.00789 0.14985 0.0595 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 241"
[1] "ENDing cell.. 241 With feature... Protrusivity"
[1] "STARTing cell.. 82 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.218 -0.211 -0.298 -0.183 -0.306 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 82"
[1] "ENDing cell.. 82 With feature... Protrusivity"
[1] "STARTing cell.. 261 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.1489 0.08342 -0.04195 -0.09763 0.00194 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 261"
[1] "ENDing cell.. 261 With feature... Protrusivity"
[1] "STARTing cell.. 262 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.04803 0.05443 0.11241 -0.00788 -0.11459 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 262"
[1] "ENDing cell.. 262 With feature... Protrusivity"
[1] "STARTing cell.. 216 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.16169 0.25063 -0.00622 0.06165 -0.03516 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 216"
[1] "ENDing cell.. 216 With feature... Protrusivity"
[1] "STARTing cell.. 66 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.18 0.351 0.333 0.38 0.359 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 66"
[1] "ENDing cell.. 66 With feature... Protrusivity"
[1] "STARTing cell.. 128 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1241 0.1907 0.1951 0.2293 0.0149 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 128"
[1] "ENDing cell.. 128 With feature... Protrusivity"
[1] "STARTing cell.. 50 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.1767 -0.2235 -0.1243 0.0534 0.0649 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 50"
[1] "ENDing cell.. 50 With feature... Protrusivity"
[1] "STARTing cell.. 5 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1183 0.1495 0.2373 0.1179 0.0917 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 5"
[1] "ENDing cell.. 5 With feature... Protrusivity"
[1] "STARTing cell.. 26 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.03224 0.08155 -0.05227 0.04205 -0.00716 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 26"
[1] "ENDing cell.. 26 With feature... Protrusivity"
[1] "STARTing cell.. 129 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.02309 0.07006 0.05792 0.00833 0.01561 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 129"
[1] "ENDing cell.. 129 With feature... Protrusivity"
[1] "STARTing cell.. 67 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.2045 0.0568 -0.0532 0.0686 -0.0405 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 67"
[1] "ENDing cell.. 67 With feature... Protrusivity"
[1] "STARTing cell.. 247 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.1014 -0.0863 -0.0335 -0.1075 -0.2022 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 247"
[1] "ENDing cell.. 247 With feature... Protrusivity"
[1] "STARTing cell.. 134 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.067 -0.0142 0.0418 0.0277 -0.129 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 134"
[1] "ENDing cell.. 134 With feature... Protrusivity"
[1] "STARTing cell.. 93 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.1145 -0.0353 -0.1031 -0.1205 -0.1858 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 93"
[1] "ENDing cell.. 93 With feature... Protrusivity"
[1] "STARTing cell.. 248 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.0595 0.1725 0.0556 0.1012 -0.0549 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 248"
[1] "ENDing cell.. 248 With feature... Protrusivity"
[1] "STARTing cell.. 157 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1448 0.081 -0.0114 -0.0342 -0.0337 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 157"
[1] "ENDing cell.. 157 With feature... Protrusivity"
[1] "STARTing cell.. 46 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.345 0.272 0.3 0.503 0.388 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 46"
[1] "ENDing cell.. 46 With feature... Protrusivity"
[1] "STARTing cell.. 242 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.08503 -0.16204 -0.00287 0.08129 0.06706 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 242"
[1] "ENDing cell.. 242 With feature... Protrusivity"
[1] "STARTing cell.. 159 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.203 -0.244 -0.282 -0.421 -0.354 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 159"
[1] "ENDing cell.. 159 With feature... Protrusivity"
[1] "STARTing cell.. 186 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0634 -0.3546 -0.0564 0.1407 -0.0437 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 186"
[1] "ENDing cell.. 186 With feature... Protrusivity"
[1] "STARTing cell.. 228 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.1088 -0.0847 -0.07 0.0556 0.0367 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 228"
[1] "ENDing cell.. 228 With feature... Protrusivity"
[1] "STARTing cell.. 160 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0576 -0.1076 -0.0847 -0.2193 -0.3322 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 160"
[1] "ENDing cell.. 160 With feature... Protrusivity"
[1] "STARTing cell.. 279 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0863 0.0417 0.0682 0.1059 -0.0265 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 279"
[1] "ENDing cell.. 279 With feature... Protrusivity"
[1] "STARTing cell.. 53 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0163 0.0738 -0.0101 -0.0521 -0.0499 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 53"
[1] "ENDing cell.. 53 With feature... Protrusivity"
[1] "STARTing cell.. 94 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.3512 -0.2255 -0.1671 -0.0636 0.0486 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 94"
[1] "ENDing cell.. 94 With feature... Protrusivity"
[1] "STARTing cell.. 121 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.0981 -0.2408 0.0617 0.0226 -0.3654 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 121"
[1] "ENDing cell.. 121 With feature... Protrusivity"
[1] "STARTing cell.. 213 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.242 -0.226 -0.107 -0.234 -0.264 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 213"
[1] "ENDing cell.. 213 With feature... Protrusivity"
[1] "STARTing cell.. 109 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0273 0.1341 0.2785 0.2425 0.1866 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 109"
[1] "ENDing cell.. 109 With feature... Protrusivity"
[1] "STARTing cell.. 110 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1979 0.1446 0.0987 -0.0919 -0.3326 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 110"
[1] "ENDing cell.. 110 With feature... Protrusivity"
[1] "STARTing cell.. 101 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.216 0.273 0.273 0.19 0.049 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 101"
[1] "ENDing cell.. 101 With feature... Protrusivity"
[1] "STARTing cell.. 187 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.1819 -0.1861 -0.1419 -0.1177 -0.0125 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 187"
[1] "ENDing cell.. 187 With feature... Protrusivity"
[1] "STARTing cell.. 263 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.00427 0.18945 0.07411 -0.06657 0.22179 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 263"
[1] "ENDing cell.. 263 With feature... Protrusivity"
[1] "STARTing cell.. 218 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.05515 -0.00188 -0.08782 -0.10334 -0.03514 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 218"
[1] "ENDing cell.. 218 With feature... Protrusivity"
[1] "STARTing cell.. 19 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.1693 -0.1039 -0.0155 0.03 -0.1485 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 19"
[1] "ENDing cell.. 19 With feature... Protrusivity"
[1] "STARTing cell.. 20 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] 0.0191 0.023 0.0475 0.1412 0.2671 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 20"
[1] "ENDing cell.. 20 With feature... Protrusivity"
[1] "STARTing cell.. 224 With feature... Protrusivity"
List of 6
$ acf : num [1:27, 1, 1] -0.1216 -0.1348 0.0495 -0.0331 0.128 ...
$ type : chr "correlation"
$ n.used: int 45
$ lag : num [1:27, 1, 1] -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ series: chr "X"
$ snames: chr "chosenTSone_y_cell & choseTStwo_x_nucleus"
- attr(*, "class")= chr "acf"
[1] "adding Cell to dataframe... 224"
[1] "ENDing cell.. 224 With feature... Protrusivity"
write.csv(outputCCFdata,file="nuc_cell_CCF_data.csv", row.names = FALSE)
str(outputCCFdata)
'data.frame': 108000 obs. of 4 variables:
$ anCCF_ACF : num 0.276 0.281 0.351 0.258 0.303 ...
$ anCCF_LAG : num -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 ...
$ an_CCF_ObjectID: chr "219" "219" "219" "219" ...
$ an_CCF_Feature : chr "Volume" "Volume" "Volume" "Volume" ...
head(outputCCFdata,50)
NA
#Linking calculated CCF output, back to treatments and metadata
outputCCFdata$an_CCF_ObjectID <- as.numeric(outputCCFdata$an_CCF_ObjectID)
unq_CellID_metaData <- unique(CellID_metaData)
head(unq_CellID_metaData)
join_outputCCFdata <- left_join(outputCCFdata, unq_CellID_metaData, by = c("an_CCF_ObjectID"="cellNumber"))
#From output of CCF function, #Cluster data by mean correlation at lag 0
#Visualise data by organizing into a heatmap --> get mean at lag zero, put DMSO first, remove coordinates?
colnames(join_outputCCFdata)
[1] "anCCF_ACF" "anCCF_LAG" "an_CCF_ObjectID" "an_CCF_Feature" "fieldNumber" "Treatment" "Row" "Column" "Plate"
join_outputCCFdata$anCCF_ACF
[1] 0.2762679062 0.2814797516 0.3509578007 0.2580847566 0.3032818863 0.3550865453 0.4652913719 0.2940406826 0.1689042863 0.3043784325 0.3362399595 0.1895496399 0.0771699665 0.0757540976
[15] 0.1414266954 0.1542020874 0.0636944127 0.0791610134 0.1801414629 0.0765836089 0.1595813524 0.0684757973 -0.0072087568 0.0989662654 0.0653061022 0.0133258534 0.0187845601 0.4433675462
[29] 0.4342420751 0.3946346903 0.3207997964 0.2836940271 0.3268135444 0.3523195894 0.2382704756 0.1343220564 0.1406445437 0.1197544823 0.1704847169 0.1715467112 0.2486205199 0.0572108144
[43] -0.0377223248 -0.0715027495 -0.1305570610 -0.1981377110 -0.2685771960 -0.2727045105 -0.2367068630 -0.2778815240 -0.3035844340 -0.2340431659 -0.2866925400 -0.2584473807 -0.4666851357 -0.4115668025
[57] -0.3474767682 -0.2557374888 -0.1082866237 -0.0212974122 0.0142869778 -0.0389565019 -0.1196591355 -0.0475398684 0.1573090799 0.2543759463 0.5834867288 0.5807767510 0.6808647159 0.5930438506
[71] 0.4594622253 0.3677761176 0.3176881158 0.2908964577 0.3101584771 0.3097352993 0.2225529953 0.0970834830 -0.0807474424 -0.1903046781 -0.2896915542 -0.1787227782 -0.1849741117 -0.1676525908
[85] -0.1694755818 -0.1438445014 -0.1698868253 -0.0943779255 -0.1784037021 -0.1654402313 -0.1631863141 -0.1655048419 -0.1688079111 -0.1951443022 -0.1041057889 -0.0243338240 0.0340077835 0.1350946731
[99] 0.1740891544 0.2763177246 0.3846089515 0.4416277594 0.4614955672 0.4583136386 0.5041510846 0.5076573822 0.4084990823 0.3353263606 -0.2151974900 -0.1261218516 -0.0409911081 0.0954460004
[113] 0.1057342178 0.0864850388 0.0535311152 0.1327914436 0.0738540102 0.1181318088 0.2489336643 0.3953507081 0.4109072599 0.4388294314 0.4738993227 0.5060847377 0.5478208264 0.4781784076
[127] 0.3643816436 0.4070744641 0.4298289287 0.3325410628 0.2686277512 0.3228075113 0.3362864268 0.2899077136 0.2492543151 -0.2978298792 -0.1824045333 -0.2081042586 -0.1270306875 -0.1241942798
[141] -0.1891978470 -0.1638760018 -0.2511194392 -0.1739043134 -0.0203974137 -0.0463289803 0.0336976960 0.0227584237 0.0868576387 0.0219626451 -0.0646102005 -0.0059133680 -0.0462967220 -0.0212560568
[155] 0.0602603950 -0.0464185628 0.0637218857 -0.0037623295 0.0866323475 0.1923760298 0.1426784706 0.2269636678 -0.3529911501 -0.3661913811 -0.2978107074 -0.2970037077 -0.3267074101 -0.3146140559
[169] -0.3784182251 -0.2302550457 -0.2111991341 -0.3014548506 -0.1638994357 -0.1121187930 -0.1736374889 0.2317940229 -0.0557447831 0.1212978384 0.1418245948 0.0752945441 0.1592145966 0.1166884657
[183] 0.0832224379 0.1636380056 0.1041390822 0.2799379428 0.1935786063 0.2921570686 0.2961379679 -0.3004823037 -0.3523835331 -0.2780944512 -0.3708164889 -0.3773243016 -0.3886513941 -0.3616685805
[197] -0.3287342046 -0.3725035493 -0.3414421381 -0.2861352224 -0.1439034710 -0.0604672578 0.1079088077 0.1626987845 0.3576502953 0.4636650201 0.4172384399 0.5871763776 0.6109219482 0.6908462288
[211] 0.5939549345 0.5885960846 0.4367466984 0.3903009892 0.2570664770 0.0959651194 0.0255040631 -0.0364531667 0.0690649639 0.0792574500 0.0571113726 0.0809880668 -0.1123609401 -0.0933814426
[225] -0.0960423305 0.0079618264 -0.0647798571 -0.1912781848 -0.1915897617 -0.2973584884 -0.0965826575 -0.0171402020 0.0702883393 0.1344447743 0.2117073922 0.3453038708 0.4213655601 0.5401232903
[239] 0.5960343492 0.5361472625 0.5832921557 0.5696148414 0.5229365096 -0.1071066740 -0.1539680873 -0.1665242083 -0.1276524387 -0.1450112935 -0.1279390647 0.0359894747 -0.1150055894 0.0300429543
[253] 0.2804245686 0.2908074399 0.1578786426 0.2872802511 0.5325335281 0.1483229392 0.3231815673 0.2769763932 0.1907930495 0.2238678270 0.1653422679 0.1847432210 0.1699513336 0.1950730904
[267] 0.1329153069 0.0747361544 0.0658277880 -0.0424519468 -0.3757492933 -0.2935983981 -0.3063036314 -0.1195776068 -0.0393561852 -0.0073701880 0.1278391826 0.0999380418 0.1249639501 0.1878824347
[281] 0.1803834366 0.3270725940 0.2905688636 0.5881848871 0.3848726030 0.4945551827 0.3373705359 0.2985410055 0.3484800823 0.3174158198 0.2814637983 0.2462050977 0.2412951726 0.1832882376
[295] 0.1015231701 0.0572733028 -0.0495487848 0.2037962316 0.2970258335 0.3189282913 0.4011042971 0.3899845697 0.4506586617 0.5131219635 0.5210183320 0.5149044154 0.5169091638 0.5828330471
[309] 0.6159994225 0.6443431964 0.6701157757 0.5675888878 0.4035035970 0.3517820378 0.2789430224 0.2025756647 0.1332054667 0.1815739555 0.0514881640 -0.0438926272 -0.1232516618 -0.2171199335
[323] -0.3291725312 -0.3932226847 -0.1319989257 -0.0521065222 -0.1304379933 -0.0641576357 0.0450471081 -0.0424045486 0.2113123418 0.1011110488 0.1990794700 0.2053633535 0.2233632123 0.3136383668
[337] 0.2083181720 0.4547292052 0.4046405032 0.5064398258 0.3799795314 0.4002565986 0.2701409837 0.2208246593 0.1452768627 0.1261023349 0.1233710534 0.1163471688 0.2152613601 0.1776978243
[351] 0.2326468691 0.1464253387 0.2382577589 0.2551753794 0.3333584571 0.3657472091 0.4087884410 0.4131451847 0.4466472578 0.4912959625 0.4507169908 0.5096098227 0.5059494835 0.5501004714
[365] 0.6382437056 0.5433494084 0.5200113813 0.4782493874 0.3713834823 0.3967486231 0.3569321244 0.2204103247 0.2600158930 0.1806723055 0.0675471009 0.0139538540 -0.0497768681 -0.1347350909
[379] -0.2020262085 -0.1932826295 -0.1344426874 -0.1840078818 -0.0875789666 -0.2092940599 -0.0605655336 -0.1314439956 -0.0062531941 0.0346301659 0.0780830591 0.1677006850 0.0091013055 0.1929930986
[393] 0.0478061264 0.2211458256 0.1811969638 0.1504675696 0.1217208776 0.1030971216 0.1390042805 0.0867125964 0.1437755695 0.2342030865 0.2265433981 0.1617407858 0.1847530218 0.3337535253
[407] 0.3856765670 0.3779833239 0.4552178559 0.5056308547 0.5282054484 0.5386363483 0.4990910271 0.5713625692 0.5517653509 0.5407644537 0.5380685165 0.4842450099 0.3679102705 0.3811557489
[421] 0.3155670873 0.2604669275 0.1143528517 0.1654779132 0.1263755434 0.0983869049 0.0786869544 -0.1448398405 -0.0964993365 -0.1601432070 -0.2501487388 -0.3312203577 0.1106980202 0.1378737025
[435] 0.1528909489 0.2074230438 0.2159610733 0.2268445701 0.2866050457 0.2807504905 0.1892624819 0.1155633816 0.1271533371 0.2993638870 0.3671390402 0.3964887619 0.3924898156 0.3991754548
[449] 0.3283372345 0.4522799316 0.4034568513 0.2801896639 0.1237727127 0.1142881486 0.1647876757 0.3080311800 0.2692482186 0.3548344880 0.1214915774 -0.0886886757 -0.0378247309 0.0147374179
[463] 0.0848406305 0.1769872368 0.1483106235 0.1764113596 0.2885656368 0.3788767624 0.4339987107 0.4043386418 0.4641118026 0.4105558404 0.6471729813 0.5162747663 0.4621059169 0.4139002470
[477] 0.3727575294 0.4101340225 0.3773411508 0.3115328808 0.2116641774 0.2136328032 0.1522199866 0.1738908967 0.0881603533 0.0224032265 0.4968615134 0.4164056679 0.3489910891 0.2979277939
[491] 0.2435008335 0.2130100513 0.0347786590 -0.0178758205 -0.0645306255 -0.0572978072 -0.1996183956 -0.1908467767 -0.1521208748 -0.2572989816 -0.2444220274 -0.2778311738 -0.1521267344 -0.1789049540
[505] -0.1252158354 -0.1004881599 -0.0536036376 0.0128535682 0.0458280978 0.0893900873 0.1325940539 0.2027936084 0.2053655323 -0.2622572205 -0.2185393319 -0.2339323226 -0.2997637898 -0.2179373765
[519] -0.2108565961 -0.2465136652 -0.1981599814 -0.1553078491 -0.1679589554 0.0215067194 0.1001674180 0.0728252375 0.1896467816 0.2150023715 0.1400750112 0.2446354571 0.2586570833 0.2357094822
[533] 0.3969574685 0.4053034467 0.4779043510 0.5776197866 0.6291807743 0.6057738975 0.6686621607 0.4907216853 0.0075648085 -0.0931611846 -0.1666411439 -0.2508530370 -0.3315297603 -0.3919474555
[547] -0.4508718909 -0.5239186566 -0.5899341447 -0.6527559895 -0.7287170808 -0.7599319915 -0.8119305410 -0.8620601751 -0.8201626625 -0.8029196225 -0.7666191682 -0.7227623463 -0.6906234252 -0.6518960470
[561] -0.5935216018 -0.5411065223 -0.5128256542 -0.4454802745 -0.3758896855 -0.3097765147 -0.2520351050 0.3011875285 0.1065095969 -0.0699894885 0.0209351195 0.0102928172 -0.2657536001 -0.1520353836
[575] -0.1194810193 -0.3937152901 -0.0915687277 -0.2245675556 -0.1946612133 0.3310943180 0.4114424880 0.1333325971 0.2593219048 0.1059248235 0.1826756448 0.3693126866 -0.0645295603 0.1284833874
[589] -0.0563067212 -0.0038250770 -0.0131668790 -0.0056178662 -0.0654017094 -0.0676423562 0.1703902376 0.1001791245 0.0403474761 0.0517299331 0.0734408405 -0.0903356153 0.0615114482 -0.1626971579
[603] -0.0626164054 0.0493117337 0.0125827315 0.1583914216 0.2136641525 0.5801410304 0.0503285305 0.0729767222 0.1779198808 0.0277963633 0.1465754673 0.1033954175 0.1346996917 -0.2399018927
[617] -0.2666616293 -0.1457990763 -0.2303428582 -0.0913444438 -0.0860780250 -0.0225019710 0.0388318641 -0.0582484044 0.0689321811 -0.0397661121 -0.0951075037 -0.1387870385 0.0090163314 0.0568543179
[631] -0.1142087373 -0.0902781323 -0.0301718773 -0.0183414522 0.1002645145 -0.0189915662 0.0421669711 -0.1091861487 0.0390983850 0.0251066383 -0.0061352902 -0.0086987898 -0.0796629850 -0.1176258161
[645] -0.2335808058 -0.2299176525 -0.1866173970 -0.2307245736 0.1906273670 0.2841128650 0.3376454829 0.3079211489 0.2729589910 0.2649791269 0.2029054876 0.1419300791 0.0802207900 -0.0615617788
[659] 0.1048347007 0.2296213158 0.3764629255 0.5552155699 0.4447152243 0.1387891106 -0.0097817845 -0.0811056458 -0.1428874968 -0.1688324656 -0.1618715474 -0.2518672009 -0.1823494026 -0.2316271570
[673] -0.1924085254 -0.1619016156 -0.2818492676 -0.3951547803 -0.3566370230 -0.4996864953 -0.3523723963 -0.3694484586 -0.4163777259 -0.4277508838 -0.5124187499 -0.2334574220 -0.2698846575 -0.2065183621
[687] -0.1233483181 -0.1461553753 0.0439187584 -0.0093477261 0.0897825140 -0.0084489009 0.1269409915 0.1428216655 0.0949554842 0.2757447869 0.1826143426 0.1416780972 0.1512322849 0.1118159614
[701] 0.1247261892 0.1149612733 -0.1492917379 -0.1812687401 -0.1784207397 -0.2113695607 -0.1374705186 -0.1075466814 -0.0796866347 -0.1142273534 -0.1945620158 -0.0749035014 0.0269303128 0.0456582368
[715] 0.0531496053 0.3118368419 0.1712756724 0.2401523926 0.1957136494 0.2532775255 0.1622010639 0.0284237692 0.1434720004 0.0697478533 0.1939221531 -0.0707197608 0.1997998679 0.3108598748
[729] 0.4253342341 0.1278774253 0.1429287617 0.2525753948 0.2694918047 0.3700998584 0.3298436556 0.4016016937 0.4817929761 0.4833304568 0.5577037793 0.5779417508 0.6977996808 0.7360870216
[743] 0.8690882276 0.7463918501 0.7034820808 0.6937067823 0.6078929135 0.5574202145 0.4499728171 0.4155994575 0.3445347281 0.4009929063 0.3304366985 0.3031788839 0.2365472437 0.1835406174
[757] 0.4185608576 0.3381537960 0.2898107925 0.2139328524 0.1918449256 0.1868310346 0.0569491466 0.0733019899 0.1061747497 0.0051524373 0.0370747710 0.0499842431 0.0705786933 0.2147641410
[771] 0.0870487015 0.1126787309 0.1902711071 0.1457764393 0.1265502240 0.0651926934 0.0410336522 0.0141034227 0.0143555173 -0.0011110113 0.0326926233 0.0406952868 -0.0830309473 0.0006251961
[785] -0.1982551404 -0.3505419224 0.0774975259 -0.2270962952 0.1853841995 -0.2178145884 -0.0809347726 -0.0486669553 -0.1248405583 0.0343831102 -0.1845019278 -0.1609570235 -0.0800024876 -0.1450418681
[799] 0.0797146195 -0.0545860313 -0.0407874058 0.0698600627 0.0424804257 0.1204642779 0.0977518437 -0.0342934997 0.0550340840 0.1536605067 0.1487401941 0.1223219256 0.1067781055 0.1452245017
[813] 0.1926112359 0.2801279079 0.3164516914 0.3899250656 0.4738309533 0.5223845266 0.5622220292 0.6175568606 0.6743004369 0.7591564171 0.7826416861 0.9067576797 0.8623121894 0.8140721425
[827] 0.7458788153 0.6743392797 0.6399828262 0.6028882017 0.5453340169 0.5145064861 0.4584464786 0.4082886774 0.3305029328 0.3098862453 0.2326267308 0.4991345931 0.5671084125 0.6861282528
[841] 0.7642519481 0.7556829746 0.7381697024 0.7661408474 0.6989409633 0.6387505124 0.6813682851 0.6609026747 0.5538646947 0.5487108979 0.4416970185 0.3956924456 0.3910526490 0.3102078451
[855] 0.2616157478 0.1832850032 0.1187310106 0.0159062588 -0.0647987671 -0.1371826227 -0.1917410360 -0.2591942010 -0.2924645644 -0.2895871903 0.0424390459 0.1095813967 0.1638703741 0.2154395700
[869] 0.2655510632 0.3395891005 0.3465097084 0.3934435635 0.4399091584 0.4920043056 0.5331409876 0.6644579240 0.6825011271 0.7646486274 0.7288360951 0.7297534978 0.7063110432 0.6243029919
[883] 0.6047719277 0.5627059264 0.5576962647 0.5371209250 0.5118298656 0.4248761324 0.3789986362 0.3475293601 0.2686023292 0.0215576567 -0.1426477631 -0.1016950955 -0.1729590254 -0.1440556225
[897] -0.1323029898 -0.3019494196 -0.2510681087 -0.2924856705 -0.4225322923 -0.2784737885 -0.2874048312 -0.2831233568 -0.1912912831 -0.1487772336 -0.1830810472 -0.1792911879 -0.0944651941 -0.1261572332
[911] -0.1948788571 -0.0804522406 -0.1554154358 -0.0776698399 -0.0697680903 -0.0499128314 -0.0421139005 -0.0450530803 -0.1012684293 -0.1897833248 -0.1406029131 -0.1435137013 -0.1335982639 -0.1011519080
[925] -0.0434080778 0.0495647464 0.0714550996 0.2187644656 0.2666242626 0.3311150959 0.4444308965 0.5600309053 0.4549666085 0.5482815939 0.4556612496 0.4563724626 0.5019287368 0.4355424184
[939] 0.3811147717 0.3249855512 0.2703758900 0.1266074713 -0.0209582346 -0.1278952614 -0.2431462324 -0.2799141437 -0.3786560404 -0.3273030287 -0.2497483136 -0.1867010450 -0.3006499260 -0.3988425358
[953] -0.4030654166 -0.3009772049 -0.1780178626 -0.1175037645 -0.1412281653 -0.1943185551 -0.2126486217 0.0516406183 0.1753020502 0.1888763828 0.1513947692 0.1906028393 0.2288823206 0.3733770822
[967] 0.4006911392 0.4450368649 0.3515778052 0.4100147253 0.4121039138 0.6359751148 -0.2903037215 -0.2779319484 -0.2838555383 -0.3045490077 -0.3103928877 -0.2625046943 -0.2060574729 -0.1294301532
[981] -0.1106479726 -0.0152485082 0.0752088950 0.3035360959 0.3529993000 0.3989880742 0.4496221262 0.5942291545 0.6028174975 0.5132298265 0.4463389264 0.3521262992 0.4568501336 0.3751372805
[995] 0.3041925780 0.0588238711 -0.0197193513 -0.0170656817 -0.0872204807 -0.0378159924
[ reached getOption("max.print") -- omitted 107000 entries ]
#get mean correlation at lag zero
mean_ccfLAGzero <- join_outputCCFdata %>%
filter(anCCF_LAG == 0)%>%
group_by(Treatment, an_CCF_Feature)%>%
summarise(meanLAGzero = mean(anCCF_ACF, na.rm = TRUE))
`summarise()` has grouped output by 'Treatment'. You can override using the `.groups` argument.
mean_ccfLAGzero
head(mean_ccfLAGzero)
# join this mean lag to output of data
sum_join_outputCCFdata <- left_join(join_outputCCFdata, mean_ccfLAGzero, by = c("Treatment", "an_CCF_Feature"))
head(sum_join_outputCCFdata)
colnames(sum_join_outputCCFdata)
[1] "anCCF_ACF" "anCCF_LAG" "an_CCF_ObjectID" "an_CCF_Feature" "fieldNumber" "Treatment" "Row" "Column" "Plate" "meanLAGzero"
head(sum_join_outputCCFdata[,],20)
levels(sum_join_outputCCFdata$Treatment)
NULL
#remove coordinate features as they are the same for cell and nucleus
subset_sum_join_outputCCFdata <- sum_join_outputCCFdata[!grepl("Coord",sum_join_outputCCFdata$an_CCF_Feature),]
#create a matrix of mean correlation at lag zero in preparation to cluster cell and nuclear correlations
colnames(subset_sum_join_outputCCFdata)
[1] "anCCF_ACF" "anCCF_LAG" "an_CCF_ObjectID" "an_CCF_Feature" "fieldNumber" "Treatment" "Row" "Column" "Plate" "meanLAGzero"
unq_subset_sum_join_outputCCFdata<- unique(subset_sum_join_outputCCFdata) # get unique value for each cell and lag etc
head(unq_subset_sum_join_outputCCFdata)
library(tidyr)
m_wide_subset_sum_join_outputCCFdata <- subset_sum_join_outputCCFdata %>%
select(meanLAGzero,an_CCF_Feature,Treatment)%>%
unique()%>%
pivot_wider(
id_col = c("meanLAGzero","an_CCF_Feature","Treatment"),
names_from = "Treatment",
values_from = "meanLAGzero"
)
m_wide_subset_sum_join_outputCCFdata
str(m_wide_subset_sum_join_outputCCFdata)
tibble [13 × 7] (S3: tbl_df/tbl/data.frame)
$ an_CCF_Feature: chr [1:13] "Volume" "SurfaceArea" "MajorAxis" "MinorAxis" ...
$ Blebbistatin : num [1:13] 0.2142 0.1289 0.2169 0.0717 0.0621 ...
$ CK666 : num [1:13] 0.1857 0.1991 0.3281 0.0901 0.1394 ...
$ DMSO : num [1:13] 0.06722 -0.02881 0.12742 0.14979 -0.00254 ...
$ H1152 : num [1:13] 0.12554 0.07727 0.12631 -0.00635 0.09651 ...
$ PF228 : num [1:13] 0.285 0.1339 0.1631 0.146 0.0896 ...
$ Palbociclib : num [1:13] 0.1804 0.0337 0.1568 0.0971 0.036 ...
#cluster data by mean correlation at lag zero
#add rownames and remove first column to make numeric matrix
rnames_m_wide_subset_sum_join_outputCCFdata <- m_wide_subset_sum_join_outputCCFdata
rownames(rnames_m_wide_subset_sum_join_outputCCFdata) <- m_wide_subset_sum_join_outputCCFdata$an_CCF_Feature
Warning: Setting row names on a tibble is deprecated.
mCCF_lagZero <- as.matrix(rnames_m_wide_subset_sum_join_outputCCFdata[-1]) #make a matrix
rownames(mCCF_lagZero) <- m_wide_subset_sum_join_outputCCFdata$an_CCF_Feature # add rownames to matrix
row.order <- hclust(dist(mCCF_lagZero))$order # get row order from clustered matrix and set this as a variable
col.order <- hclust(dist(t(mCCF_lagZero)))$order # get column order from clustered matrix and set this as a variable
row.order
[1] 4 13 10 2 5 6 11 7 8 12 9 1 3
col.order
[1] 4 1 5 2 3 6
mCCF_lagZero[row.order, col.order]
H1152 Blebbistatin PF228 CK666 DMSO Palbociclib
MinorAxis -0.006349057 0.07167036 0.145961014 0.09014634 0.149793825 0.09708400
Protrusivity 0.014539875 0.06505763 -0.006708106 0.05788555 0.128198733 0.07335239
nProtrusions 0.012258843 0.01574554 0.014954936 0.04310129 -0.050246279 0.05897430
SurfaceArea 0.077271089 0.12886351 0.133897125 0.19910025 -0.028814741 0.03365591
secondMajor 0.096512562 0.06209724 0.089632526 0.13939170 -0.002543216 0.03600853
Eccentricity 0.072285683 0.09383988 0.096024905 0.29326688 0.264950415 0.16190690
Polarity 0.075100636 0.06230569 0.098232869 0.27565131 0.217888154 0.12715346
secondEccentricity 0.081195389 0.02634901 0.065178931 0.19349362 0.139665457 0.10799925
Sphericity 0.058027695 0.08406116 0.028583340 0.13144359 0.258866615 0.13340014
Spreading 0.041429780 0.09181204 0.024164187 0.21485050 0.199570476 0.14826932
Vol2surf 0.117843141 0.19732716 0.220718145 0.10312642 0.271272631 0.28874159
Volume 0.125543312 0.21415734 0.285030908 0.18567827 0.067218317 0.18040136
MajorAxis 0.126309748 0.21692136 0.163091197 0.32810789 0.127418219 0.15677898
# get list of rows with names for ordering (order the factor this way)
featureOrder <- m_wide_subset_sum_join_outputCCFdata$an_CCF_Feature # make the features a variable called feature order
featureOrder # look at current feature order (this is order will be plotted in ggplot)
[1] "Volume" "SurfaceArea" "MajorAxis" "MinorAxis" "secondMajor" "Eccentricity" "secondEccentricity" "Sphericity" "Vol2surf"
[10] "nProtrusions" "Polarity" "Spreading" "Protrusivity"
newFeatureOrder <- featureOrder[row.order] #make a new or desired feature order based on the row order
featureOrder <- factor(featureOrder, levels = newFeatureOrder) # reorder the factor levels of the feature to match the clsutering
featureOrder
[1] Volume SurfaceArea MajorAxis MinorAxis secondMajor Eccentricity secondEccentricity Sphericity Vol2surf nProtrusions
[11] Polarity Spreading Protrusivity
Levels: MinorAxis Protrusivity nProtrusions SurfaceArea secondMajor Eccentricity Polarity secondEccentricity Sphericity Spreading Vol2surf Volume MajorAxis
# Treatment orders (do same process for factors but for treatments)
treatmentOrder <- colnames(mCCF_lagZero)
newTreatmentOrder <- treatmentOrder[col.order]
treatmentOrder <- factor(treatmentOrder, levels = newTreatmentOrder)
#update main dataframe (update the factor levels for Treatments and Features, to be based on clustering)
subset_sum_join_outputCCFdata$Treatment <- factor(subset_sum_join_outputCCFdata$Treatment, levels =newTreatmentOrder)
subset_sum_join_outputCCFdata$an_CCF_Feature <- factor(subset_sum_join_outputCCFdata$an_CCF_Feature, levels = newFeatureOrder)
#plot unclustered and clustered data
# library(ggplot2)
ggplot(subset_sum_join_outputCCFdata, aes(x =anCCF_LAG, y = anCCF_ACF, group = an_CCF_ObjectID))+
geom_line(alpha = 0.1)+
facet_wrap(~an_CCF_Feature)+
stat_summary(aes(y = anCCF_ACF,group=1), fun.y=mean, colour="darkorange", geom="line",group=1, size = 1)+
theme_classic()
Warning: `fun.y` is deprecated. Use `fun` instead.
Warning: Removed 189 rows containing non-finite values (stat_summary).
# join_outputCCFdata
ggplot(subset_sum_join_outputCCFdata, aes(x =anCCF_LAG, y = anCCF_ACF, group = an_CCF_ObjectID, color = Treatment))+
geom_line(alpha = 0.1)+
facet_grid( vars(an_CCF_Feature),vars(Treatment) )+
stat_summary(aes(y = anCCF_ACF,group=1), fun.y=mean, colour="gray20", geom="line",group=1, size = 1)+
theme_classic()
Warning: `fun.y` is deprecated. Use `fun` instead.
Warning: Removed 189 rows containing non-finite values (stat_summary).
#Clustered, and coloured by mean, with identicle feature removed
ggplot(subset_sum_join_outputCCFdata[,],
aes(x =subset_sum_join_outputCCFdata$anCCF_LAG, y = subset_sum_join_outputCCFdata$anCCF_ACF, group = subset_sum_join_outputCCFdata$an_CCF_ObjectID, color = subset_sum_join_outputCCFdata$meanLAGzero))+
geom_line(alpha = 0.5)+
scale_color_viridis_c(option ="magma")+
facet_grid( vars(an_CCF_Feature),vars(Treatment) )+
stat_summary(aes(y = subset_sum_join_outputCCFdata$anCCF_ACF,group=1), fun.y=mean, colour="gray20", geom="line",group=1, size = 1)+
theme_classic()
Warning: `fun.y` is deprecated. Use `fun` instead.
Warning: Use of `subset_sum_join_outputCCFdata$anCCF_LAG` is discouraged. Use `anCCF_LAG` instead.
Warning: Use of `subset_sum_join_outputCCFdata$anCCF_ACF` is discouraged. Use `anCCF_ACF` instead.
Warning: Use of `subset_sum_join_outputCCFdata$an_CCF_ObjectID` is discouraged. Use `an_CCF_ObjectID` instead.
Warning: Use of `subset_sum_join_outputCCFdata$meanLAGzero` is discouraged. Use `meanLAGzero` instead.
Warning: Use of `subset_sum_join_outputCCFdata$anCCF_ACF` is discouraged. Use `anCCF_ACF` instead.
Warning: Use of `subset_sum_join_outputCCFdata$anCCF_LAG` is discouraged. Use `anCCF_LAG` instead.
Warning: Removed 189 rows containing non-finite values (stat_summary).
#Clustered and background coloured
ggplot(subset_sum_join_outputCCFdata[,],
aes(x =subset_sum_join_outputCCFdata$anCCF_LAG, y = subset_sum_join_outputCCFdata$anCCF_ACF, group = subset_sum_join_outputCCFdata$an_CCF_ObjectID))+
geom_rect(data=subset_sum_join_outputCCFdata, aes(ymin=-1, ymax=1, xmin=-15,
xmax=15, fill=subset_sum_join_outputCCFdata$meanLAGzero, color = subset_sum_join_outputCCFdata$meanLAGzero), alpha =0.1)+
geom_line(alpha = 0.5)+
scale_color_viridis_c(option ="magma")+
scale_fill_viridis_c(option ="magma")+
facet_grid( vars(an_CCF_Feature),vars(Treatment) )+
stat_summary(aes(y = subset_sum_join_outputCCFdata$anCCF_ACF,group=1), fun.y=mean, colour="darkorange", geom="line",group=1, size = 1)+
theme_classic()
Warning: `fun.y` is deprecated. Use `fun` instead.
Warning: Use of `subset_sum_join_outputCCFdata$meanLAGzero` is discouraged. Use `meanLAGzero` instead.
Warning: Use of `subset_sum_join_outputCCFdata$meanLAGzero` is discouraged. Use `meanLAGzero` instead.
Warning: Use of `subset_sum_join_outputCCFdata$anCCF_LAG` is discouraged. Use `anCCF_LAG` instead.
Warning: Use of `subset_sum_join_outputCCFdata$anCCF_ACF` is discouraged. Use `anCCF_ACF` instead.
Warning: Use of `subset_sum_join_outputCCFdata$an_CCF_ObjectID` is discouraged. Use `an_CCF_ObjectID` instead.
Warning: Use of `subset_sum_join_outputCCFdata$anCCF_LAG` is discouraged. Use `anCCF_LAG` instead.
Warning: Use of `subset_sum_join_outputCCFdata$anCCF_ACF` is discouraged. Use `anCCF_ACF` instead.
Warning: Use of `subset_sum_join_outputCCFdata$an_CCF_ObjectID` is discouraged. Use `an_CCF_ObjectID` instead.
Warning: Use of `subset_sum_join_outputCCFdata$anCCF_ACF` is discouraged. Use `anCCF_ACF` instead.
Warning: Use of `subset_sum_join_outputCCFdata$anCCF_LAG` is discouraged. Use `anCCF_LAG` instead.
Warning: Removed 189 rows containing non-finite values (stat_summary).
#1. Get differnece in all lags
testArranger_join_outputCCFdata <- join_outputCCFdata %>%
arrange(an_CCF_ObjectID,an_CCF_Feature, Treatment,anCCF_LAG,)%>%
group_by(an_CCF_ObjectID, an_CCF_Feature,Treatment)
# mutate_at("anCCF_ACF", ~ . - dplyr::lag(., n = 1, default = NA),.keep = "all" )
diff_join_outputCCFdata <- join_outputCCFdata %>%
arrange(an_CCF_ObjectID,an_CCF_Feature, Treatment,anCCF_LAG)%>%
group_by(an_CCF_ObjectID, an_CCF_Feature,Treatment) %>%
mutate_at("anCCF_ACF", ~ . - dplyr::lag(., n = 1, default = NA),.keep = "all" )
diff_join_outputCCFdata$CCF_diff <- diff_join_outputCCFdata$anCCF_ACF
head(testArranger_join_outputCCFdata)
head(diff_join_outputCCFdata)
#create absolute difference measure (getting absolute change in correlation)
diff_join_outputCCFdata$absCCF_diff <- abs(diff_join_outputCCFdata$CCF_diff)
abs(diff_join_outputCCFdata$absCCF_diff)
diff_join_outputCCFdata
#2. get average difference for lags less than 0
diff_join_outputCCFdata$lagRange <- ifelse(diff_join_outputCCFdata$anCCF_LAG >-7 & diff_join_outputCCFdata$anCCF_LAG <0 , "negativeLAG",
ifelse(diff_join_outputCCFdata$anCCF_LAG >0 & diff_join_outputCCFdata$anCCF_LAG <7, "positiveLAG",
ifelse(diff_join_outputCCFdata$anCCF_LAG == 0, "zeroLAG", "OutOfLagRange")))
#doing individual
#NB, could do overall averages and then summarise this
##Possible MISTAKE --> Need to group by lag range?
diff_join_outputCCFdata
summary_meandiff_overLAGrange_join_outputCCFdata <- diff_join_outputCCFdata %>%
group_by(an_CCF_ObjectID, an_CCF_Feature,Treatment,lagRange)%>%
dplyr::summarise(meanLAGdiff = mean(anCCF_ACF, na.rm = TRUE),
meanAbsLAGdiff = mean(absCCF_diff, na.rm = TRUE))
summary_meandiff_overLAGrange_join_outputCCFdata
library(tidyr)
colnames(summary_meandiff_overLAGrange_join_outputCCFdata)
widerDiffs <- pivot_wider(summary_meandiff_overLAGrange_join_outputCCFdata,
id_cols = c("an_CCF_ObjectID","an_CCF_Feature","Treatment","meanAbsLAGdiff","lagRange"),
names_from = "lagRange",
values_from = "meanAbsLAGdiff")
widerDiffs$priorToPostRatio <- widerDiffs$negativeLAG/widerDiffs$positiveLAG
head(widerDiffs)
#rejoin ratios back to main summary
widerDiffs[,c(1,2,3,7)]
join_summary_meandiff_overLAGrange_join_outputCCFdata <- left_join(summary_meandiff_overLAGrange_join_outputCCFdata, widerDiffs[,c(1,2,3,7)], by = c("an_CCF_ObjectID","an_CCF_Feature","Treatment"))
dim(summary_meandiff_overLAGrange_join_outputCCFdata)
dim(join_summary_meandiff_overLAGrange_join_outputCCFdata)
?pivot_wider()
head(summary_meandiff_overLAGrange_join_outputCCFdata)
#3. Get average difference for lags greater than 0
# -0.1781466 --0.1402122
#look back to original data based on this #get difference between pre and post lags
#changes on 1 12 21
join_outputCCFdata$lagRange <- ifelse(diff_join_outputCCFdata$anCCF_LAG >-15 & diff_join_outputCCFdata$anCCF_LAG <0 , "negativeLAG",
ifelse(diff_join_outputCCFdata$anCCF_LAG >0 & diff_join_outputCCFdata$anCCF_LAG <15, "positiveLAG",
ifelse(diff_join_outputCCFdata$anCCF_LAG == 0, "zeroLAG", "OutOfLagRange")))
Error in ifelse(diff_join_outputCCFdata$anCCF_LAG > -15 & diff_join_outputCCFdata$anCCF_LAG < :
object 'diff_join_outputCCFdata' not found
#Get PC loadings for features, make this as size